:root {
  --bg: #f6efe7;
  --bg-deep: #efe2d2;
  --ink: #1f1b16;
  --muted: #5c5249;
  --accent: #b24b2a;
  --accent-dark: #8f3b20;
  --cream: #fff6ea;
  --shadow: 0 30px 60px rgba(20, 14, 10, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fffdf8 0%, var(--bg) 45%, var(--bg-deep) 100%);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 239, 231, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 27, 22, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.logo-mark {
  background: var(--accent);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.logo-text {
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

#lang-switch {
  border: 1px solid rgba(31, 27, 22, 0.15);
  border-radius: 999px;
  padding: 8px 12px;
  background: white;
  font-weight: 600;
  color: var(--ink);
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(178, 75, 42, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(178, 75, 42, 0.28);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(178, 75, 42, 0.4);
  color: var(--accent-dark);
  box-shadow: none;
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(178, 75, 42, 0.2), transparent 60%),
              radial-gradient(circle at 80% 0%, rgba(255, 210, 170, 0.4), transparent 55%);
  z-index: 0;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.65);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.badge-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.badge-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-media img {
  height: 520px;
}

.hero-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--cream);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  width: min(320px, 80%);
}

.card-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.card-sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 90px 0;
}

.section-story {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(31, 27, 22, 0.06);
  border-bottom: 1px solid rgba(31, 27, 22, 0.06);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.split h2,
.section-head h2,
.section-contact h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.highlights {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.highlight {
  background: white;
  padding: 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.08);
}

.image-stack {
  display: grid;
  gap: 18px;
}

.image-stack img:last-child {
  transform: translateX(20px);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.section-head p {
  color: var(--muted);
  max-width: 420px;
}

.section-gallery .gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.gallery-text {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.section-menu {
  background: linear-gradient(160deg, rgba(255, 246, 234, 0.9), rgba(246, 239, 231, 0.9));
}

.pizza-section {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 40px rgba(31, 27, 22, 0.08);
  margin-bottom: 40px;
}

.pizza-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.pizza-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.pizza-header p {
  color: var(--muted);
}

.pizza-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pizza-tab {
  border: 1px solid rgba(31, 27, 22, 0.2);
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pizza-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 8px 18px rgba(178, 75, 42, 0.25);
}

.pizza-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.pizza-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 27, 22, 0.08);
  background: rgba(255, 246, 234, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pizza-item h4 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.pizza-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.pizza-item .price {
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}

.pizza-item.hidden {
  display: none;
}

.pizza-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(31, 27, 22, 0.08);
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.menu-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 16px 35px rgba(31, 27, 22, 0.08);
}

.menu-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.menu-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(31, 27, 22, 0.1);
  padding-bottom: 8px;
  font-weight: 500;
}

.menu-card li span:last-child {
  color: var(--accent-dark);
}

.section-contact {
  background: radial-gradient(circle at top left, rgba(178, 75, 42, 0.12), transparent 55%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-cards div {
  background: white;
  padding: 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(31, 27, 22, 0.08);
}

.hours-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246, 239, 231, 0.6);
  font-size: 0.95rem;
}

.hours-list .day {
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 27, 22, 0.08);
}

.hours-list .time {
  color: var(--muted);
  text-align: right;
}

.hours-list li.current-day {
  background: rgba(178, 75, 42, 0.14);
  box-shadow: 0 8px 18px rgba(178, 75, 42, 0.18);
}

.hours-list li.current-day .day {
  background: var(--accent);
  color: white;
}

.contact-panel {
  background: var(--ink);
  color: white;
  padding: 28px;
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

.contact-panel .btn {
  width: fit-content;
}

.phone {
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-note {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.site-footer {
  padding: 30px 0 50px;
  text-align: center;
  color: var(--muted);
}

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

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

@media (max-width: 980px) {
  .hero-content,
  .split,
  .section-gallery .gallery,
  .contact-grid,
  .pizza-header {
    grid-template-columns: 1fr;
  }

  .pizza-tabs {
    justify-content: flex-start;
  }

  .hero-media img {
    height: 420px;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-stack img:last-child {
    transform: none;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .pizza-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .pizza-list {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    gap: 10px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
