:root {
  color-scheme: dark;
  --space-black: #0a0a0a;
  --rocket-silver: #e5e5e5;
  --safety-orange: #ff5722;
  --slate: #b9b9b9;
  --muted: #8a8a8a;
  --glass: rgba(15, 15, 15, 0.78);
  --stroke: rgba(229, 229, 229, 0.12);
  --glow: 0 10px 40px rgba(255, 87, 34, 0.15);
  --font-display: "Montserrat", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-body: "Source Sans 3", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--rocket-silver);
  background: radial-gradient(circle at top, #141414 0%, #0a0a0a 45%, #060606 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 87, 34, 0.08), transparent 55%),
  radial-gradient(circle at 80% 20%, rgba(229, 229, 229, 0.06), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
}

.nav a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.1rem;
  position: relative;
  color: var(--slate);
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--rocket-silver);
}

.nav-indicator {
  position: absolute;
  height: 2px;
  background: var(--safety-orange);
  bottom: 0.35rem;
  left: 0;
  width: 20px;
  transition: transform 0.4s ease, width 0.4s ease;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.button {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  background: var(--safety-orange);
  color: #fff;
  box-shadow: var(--glow);
}

.button.secondary {
  background: transparent;
  border-color: var(--stroke);
  color: var(--rocket-silver);
  box-shadow: none;
}

.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--stroke);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.6), transparent 65%);
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2.5rem;
}

.card {
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: var(--glass);
  backdrop-filter: blur(14px);
  min-height: 220px;
}

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

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.taste-section {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.taste-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--stroke);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--safety-orange);
  margin-bottom: 1rem;
}

.menu-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2.5rem;
}

.menu-item {
  border-bottom: 1px solid var(--stroke);
  padding: 0.8rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item span {
  color: var(--muted);
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2.5rem;
}

.gallery img {
  border-radius: 18px;
  border: 1px solid var(--stroke);
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 5;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2.5rem;
}

.contact-card {
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(12, 12, 12, 0.6);
}

.contact-card h3 {
  margin-top: 0;
  font-family: var(--font-display);
}

.status-pill {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill.open {
  color: #b9ffb1;
  border-color: rgba(185, 255, 177, 0.4);
}

.status-pill.closed {
  color: #ffb1a7;
  border-color: rgba(255, 177, 167, 0.4);
}

.form {
  display: grid;
  gap: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--rocket-silver);
  font-family: var(--font-body);
}

textarea {
  min-height: 140px;
}

.toast {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: rgba(15, 15, 15, 0.9);
  color: var(--rocket-silver);
  border: 1px solid var(--stroke);
  border-left: 3px solid var(--safety-orange);
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

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

.toast.error {
  border-left-color: #ff8070;
}

footer {
  border-top: 1px solid var(--stroke);
  margin-top: 4rem;
  padding: 2rem 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
}

.footer-grid > :last-child {
  justify-self: end;
  text-align: right;
}

footer p {
  margin: 0.4rem 0;
}

.footer-grid > :first-child p {
  margin-top: 1.4rem;
}

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

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

@media (max-width: 900px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .nav-indicator {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    height: auto;
  }

  .footer-grid {
    gap: 0.75rem;
  }

  .footer-grid > :last-child {
    justify-self: start;
    text-align: left;
  }

  .toast {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    text-align: center;
  }
}
