:root {
  --black: #060308;
  --black-soft: #120717;
  --purple: #6b1fb0;
  --purple-deep: #3b0f66;
  --red: #e61f3d;
  --white: #ffffff;
  --white-soft: #f5ecff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Outfit', sans-serif;
  background: radial-gradient(circle at top right, rgba(230, 31, 61, 0.25), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(107, 31, 176, 0.32), transparent 35%),
    linear-gradient(135deg, var(--black) 15%, var(--black-soft) 50%, #1a0826 100%);
  color: var(--white-soft);
}

.screen {
  display: block;
  margin: 0 auto;
  width: 100px;
}

main {
  flex: 1;
}

.site-bg {
  display: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(90deg, rgba(59, 15, 102, 0.96), rgba(230, 31, 61, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  text-decoration: none;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Prata', serif;
  font-size: 1.1rem;
}

.brand-mark {
  color: #ffd5de;
}

.brand-name {
  color: var(--white);
}

.site-nav {
  display: flex;
  gap: 1.3rem;
  transition: all 0.3s ease;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffe5ff;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--white);
  border-radius: 0.45rem;
  padding: 0.3rem 0.65rem;
}

.section {
  width: min(1150px, 92vw);
  margin: 0 auto;
  padding: clamp(2.5rem, 4vw, 4.5rem) 0;
}

.hero,
.menu-intro,
.contact-intro {
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #ffd1ff;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  font-family: 'Prata', serif;
  line-height: 1.22;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.45rem, 3.4vw, 2.3rem);
}

.hero-copy {
  max-width: 780px;
  margin: 0.7rem auto 0;
}

.section-heading {
  margin-bottom: 1rem;
  text-align: center;
}

.card-grid,
.menu-layout,
.contact-grid,
.image-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.menu-layout {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

.image-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.glass-card,
.menu-block,
.contact-form,
.spotlight {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(107, 31, 176, 0.27), rgba(14, 7, 20, 0.88));
  padding: 1.2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.menu-block h3,
.glass-card h3 {
  color: var(--white);
}

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

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

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

.menu-list strong,
.highlight {
  color: #ffb4c0;
  font-weight: 700;
}

.image-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--red), var(--purple));
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.6rem;
  padding: 0.65rem 0.75rem;
  background: rgba(4, 2, 6, 0.55);
  color: var(--white);
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: #f9cdff;
}

.footer {
  margin-top: auto;
  padding: 2rem 0 1.4rem;
  background: linear-gradient(90deg, rgba(230, 31, 61, 0.96), rgba(59, 15, 102, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.footer-grid {
  width: min(1150px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.footer-title {
  margin: 0 0 0.2rem;
  font-family: 'Prata', serif;
}

.footer a {
  color: #ffeef1;
}

.footer-bottom {
  width: min(1150px, 92vw);
  margin: 1.2rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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



/* Homepage specific spacing */
.home-page .home-main {
  display: grid;
  gap: 1.25rem;
}

.home-page .home-section {
  padding-top: clamp(3.6rem, 6vw, 6rem);
  padding-bottom: clamp(3.6rem, 6vw, 6rem);
}

.home-page .hero {
  padding-top: clamp(5rem, 10vw, 8rem);
}

.home-page .section-heading {
  margin-bottom: 1.8rem;
}

.home-page .glass-card,
.home-page .menu-block {
  padding: 1.5rem;
}

.home-page .hero-copy {
  margin-top: 1.2rem;
}

.home-page .hero-actions {
  margin-top: 2.1rem;
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    display: none;
    flex-direction: column;
    min-width: 180px;
    padding: 0.8rem;
    border-radius: 0.75rem;
    background: #2f0c50;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }



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

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