:root {
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --black-lighter: #2a2a2a;
  --yellow: #F59E0B;
  --yellow-light: #FBBF24;
  --orange: #EA580C;
  --orange-light: #F97316;
  --white: #fafafa;
  --gray: #a3a3a3;
  --gray-light: #e5e5e5;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', serif;

  --container: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--black);
  border-color: transparent;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.btn--outline:hover {
  background: var(--yellow);
  color: var(--black);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--header-h);
  transition: background 0.3s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--yellow);
}

.nav__menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/302899/pexels-photo-302899.jpeg?auto=compress&cs=tinysrgb&w=1920')
    center / cover no-repeat;
  animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray);
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* About */
.about {
  background: var(--black-light);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.about__image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image:hover img {
  transform: scale(1.05);
}

.about__text p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* Menu */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu__card {
  background: var(--black-light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--black-lighter);
  transition: all 0.4s ease;
}

.menu__card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.1);
}

.menu__card-img {
  height: 240px;
  overflow: hidden;
}

.menu__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu__card:hover .menu__card-img img {
  transform: scale(1.1);
}

.menu__card-body {
  padding: 28px;
}

.menu__card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.menu__card-body p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.menu__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yellow);
}

/* Features */
.features {
  background: var(--black-light);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.features__item {
  padding: 32px;
  border-radius: 16px;
  background: var(--black);
  border: 1px solid var(--black-lighter);
  transition: all 0.3s ease;
}

.features__item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.features__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(234, 88, 12, 0.1));
  color: var(--yellow);
  margin-bottom: 20px;
}

.features__item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.features__item p {
  color: var(--gray);
  font-size: 0.875rem;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact__item {
  margin-bottom: 32px;
}

.contact__item h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 8px;
}

.contact__item p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  background: var(--black-light);
  border: 1px solid var(--black-lighter);
  border-radius: 8px;
  color: var(--white);
  transition: border-color 0.3s ease;
  outline: none;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--yellow);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--gray);
}

/* Footer */
.footer {
  padding: 60px 0 24px;
  border-top: 1px solid var(--black-lighter);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
}

.footer__text {
  color: var(--gray);
  font-size: 0.875rem;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black-light);
  color: var(--gray);
  transition: all 0.3s ease;
  border: 1px solid var(--black-lighter);
}

.footer__social a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.footer__bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--black-lighter);
}

.footer__bottom p {
  color: var(--gray);
  font-size: 0.8125rem;
}

/* CTA Menu Section (homepage) */
.cta-menu {
  text-align: center;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.cta-menu__content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-menu__content p {
  color: var(--gray);
  font-size: 1.0625rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Menu Page */
.page-menu .nav__link[href="/menu"] {
  color: var(--white);
}

.page-menu .nav__link[href="/menu"]::after {
  width: 100%;
}

.menu-page {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
}

.menu-page__header {
  text-align: center;
  margin-bottom: 80px;
}

.menu-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.menu-page__desc {
  color: var(--gray);
  font-size: 1.0625rem;
  margin-top: 12px;
}

.menu-section {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--black-lighter);
}

.menu-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu-section__header {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-section__title {
  font-size: 1.5rem;
  font-weight: 700;
}

.menu-section__note {
  font-size: 0.75rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 20px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.menu-item:hover {
  background: var(--black-light);
}

.menu-item__info {
  flex: 1;
  min-width: 0;
}

.menu-item__name {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-item__badge {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  background: var(--yellow);
  padding: 2px 8px;
  border-radius: 4px;
}

.menu-item__desc {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-top: 4px;
  line-height: 1.5;
}

.menu-item__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
}

.menu-item__prices {
  display: flex;
  gap: 12px;
}

.menu-item--extra {
  align-items: center;
}

.menu-item--extra .menu-item__name {
  font-weight: 500;
  color: var(--gray);
}

.menu-page__footnote {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--black-lighter);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Responsive */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image img {
    height: 350px;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 700px) {
  .nav__menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__toggle {
    display: flex;
  }

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

  .features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .menu-page {
    padding-top: calc(var(--header-h) + 40px);
  }

  .menu-item {
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
  }

  .menu-section__header {
    flex-direction: column;
    gap: 4px;
  }
}
