:root {
  --bg: #0d0a07;
  --bg-card: #111009;
  --gold: #c9943a;
  --gold-light: #ddaf5e;
  --green: #2a5c45;
  --green-muted: rgba(42, 92, 69, 0.35);
  --cream: #f0ebe3;
  --muted: #7a6e60;
  --border: rgba(201, 148, 58, 0.18);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 3rem;
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
  background: rgba(13, 10, 7, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(240,235,227,0.65);
  transition: color 0.3s;
}
.nav-link:hover { color: var(--cream); }

.nav-order {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.5rem 1.3rem;
  border-radius: 2rem;
  transition: all 0.3s;
}
.nav-order:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.lang-btn {
  background: none;
  border: 1px solid rgba(240,235,227,0.22);
  color: rgba(240,235,227,0.55);
  padding: 0.38rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  transition: all 0.3s;
}
.lang-btn:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-mobile-menu span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

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

.hero-bg {
  position: absolute;
  inset: -12% 0;
  background-image: url('images/pizza1.webp');
  background-size: cover;
  background-position: center 25%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,10,7,0.3) 0%,
    rgba(13,10,7,0.55) 45%,
    rgba(13,10,7,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(240,235,227,0.6);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease 1s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease 1.3s forwards;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--bg);
  padding: 0.95rem 2.4rem;
  border-radius: 0.2rem;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(240,235,227,0.28);
  color: var(--cream);
  padding: 0.95rem 2.4rem;
  border-radius: 0.2rem;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  transition: border-color 0.3s, background 0.3s;
}
.btn-secondary:hover {
  border-color: rgba(240,235,227,0.65);
  background: rgba(240,235,227,0.05);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 2.2s forwards;
}
.scroll-indicator span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease infinite;
}

/* ── Sections ── */
section { padding: 7rem 0; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.body-text {
  color: rgba(240,235,227,0.58);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 460px;
}

/* ── About ── */
#about { background: var(--bg-card); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.about-image:hover img { transform: scale(1.04); }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--green-muted);
  border-radius: 0.25rem;
  pointer-events: none;
}

/* ── Specialties ── */
#specialties { background: var(--bg); }

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.food-card {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.food-card:hover img { transform: scale(1.06); }

.food-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(13,10,7,0.8) 0%, transparent 100%);
}

.food-card-label h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.03em;
}

/* ── Menu CTA ── */
#menu-section {
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.menu-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-cta-box .section-label { justify-content: center; }
.menu-cta-box .section-label::before { display: none; }

.btn-menu-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1.1rem 3rem;
  border-radius: 0.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-top: 0.5rem;
  transition: all 0.35s;
}
.btn-menu-large:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-menu-large svg { transition: transform 0.3s; }
.btn-menu-large:hover svg { transform: translateX(5px); }

/* ── Order ── */
#order {
  background: var(--bg-card);
  text-align: center;
}

.order-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.order-box .section-label { justify-content: center; }
.order-box .section-label::before { display: none; }

.order-sub {
  text-align: center;
  max-width: 380px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  margin-top: 2rem;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.phone-link:hover { color: var(--gold-light); }
.phone-link svg { flex-shrink: 0; }

/* ── Location ── */
#location { background: var(--bg); padding-top: 0; }

.location-exterior {
  position: relative;
  height: 340px;
  overflow: hidden;
  margin-bottom: 5rem;
}

.location-exterior img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.55);
}

.location-exterior-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-exterior-overlay p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  letter-spacing: 0.04em;
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(240,235,227,0.6);
  font-size: 0.95rem;
  line-height: 1.65;
}
.contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 0.15rem; }
.contact-item a { transition: color 0.3s; }
.contact-item a:hover { color: var(--gold); }

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.9rem 2.2rem;
  border-radius: 0.2rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  transition: background 0.3s, transform 0.3s;
}
.directions-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.map-container {
  height: 440px;
  border-radius: 0.25rem;
  overflow: hidden;
  border: 1px solid var(--green-muted);
}

/* ── Footer ── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--green-muted);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-address { font-size: 0.8rem; color: var(--muted); }
.footer-copy { font-size: 0.8rem; color: var(--muted); }

/* ── Animations ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 0.7; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1.2); transform-origin: top; }
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #navbar { padding: 1.3rem 1.5rem; }
  #navbar.scrolled { padding: 1rem 1.5rem; }
  .nav-link { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { aspect-ratio: 16/9; }

  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .food-grid .food-card:last-child { grid-column: span 2; aspect-ratio: 16/9; }

  .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-exterior { height: 240px; margin-bottom: 3.5rem; }
  .map-container { height: 320px; }

  section { padding: 5rem 0; }
  #location { padding-top: 0; }

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

@media (max-width: 640px) {
  .nav-order { display: none; }
  .nav-mobile-menu { display: flex; }

  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }

  .food-grid { grid-template-columns: 1fr; gap: 1rem; }
  .food-grid .food-card:last-child { grid-column: span 1; aspect-ratio: 3/4; }

  .footer-links { gap: 1.5rem; }
}
