/* ═══════════════════════════════════════════════════════════════
   OLIO D'OLIVA PIZZERIA SOFIA — Modern Redesign Mockup
   Italian flag palette · Dark luxury aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #009246;
  --green-dark:   #007535;
  --white:        #F9F6F1;
  --off-white:    #E5E0D8;
  --red:          #CE2B37;
  --red-dark:     #A52230;
  --black:        #070707;
  --dark-bg:      #131313;
  --card-bg:      #222222;
  --gold:         #C9A84C;
  --gold-light:   #DCC070;
  --gold-dim:     #8A6A1A;

  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --text-muted:   rgba(249,246,241,0.42);
  --text-dim:     rgba(249,246,241,0.65);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --container:    min(1200px, 100% - 48px);
  --r:            12px;
  --r-sm:         8px;

  --ease-expo:    cubic-bezier(0.19, 1, 0.22, 1);
  --ease-cubic:   cubic-bezier(0.645, 0.045, 0.355, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
em  { font-style: italic; }

.container {
  width: var(--container);
  margin-inline: auto;
}


/* ── Utility: Italian Tricolor ───────────────────────────────── */
.tricolor-divider {
  display: flex;
  height: 4px;
}
.tc            { display: block; flex: 1; }
.tc--green     { background: var(--green); }
.tc--white     { background: var(--white); }
.tc--red       { background: var(--red); }


/* ── Trust / Awards Bar ──────────────────────────────────────── */
.trust-bar {
  background: var(--dark-bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-bar__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 40px;
  flex: 1;
  max-width: 280px;
  transition: background 0.2s;
}

.trust-item:hover { background: rgba(255,255,255,0.03); }

.trust-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.trust-item__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.trust-item__stars {
  color: #FBBC04;
  font-size: 0.78rem;
  letter-spacing: -0.03em;
}

.trust-item__sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 16px 0;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .trust-bar__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .trust-item { max-width: 50%; flex-basis: 50%; }
  .trust-sep { display: none; }
}

@media (max-width: 480px) {
  .trust-item { max-width: 100%; flex-basis: 100%; padding: 16px 20px; }
}


/* ── Section CTA ─────────────────────────────────────────────── */
.section-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.section-cta--center {
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.section-cta--center .btn + .btn { margin-top: 0; }

.section-cta__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.section-cta__note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.section-cta__note a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-cta__note a:hover { color: var(--white); }

@media (max-width: 600px) {
  .section-cta { flex-direction: column; align-items: flex-start; }
  .section-cta--center { align-items: center; }
}


/* ── Utility: Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-expo), box-shadow 0.25s;
  cursor: pointer;
  white-space: nowrap;
}

.btn--red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(206,43,55,0.38);
}

.btn--outline-green {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn--outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,146,70,0.28);
}

.btn--sm   { padding: 10px 20px; font-size: 0.75rem; }
.btn--full { width: 100%; padding: 18px; font-size: 0.9rem; margin-top: 6px; }


/* ── Utility: Section Labels ─────────────────────────────────── */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 40px;
}
.section-title em {
  color: var(--gold);
}


/* ── Utility: Fade-up scroll animation ───────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease-expo), background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-icon { flex-shrink: 0; }

.nav__logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: screen;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.nav__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Nav links */
.nav__links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  padding: 7px 13px;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color 0.2s;
  border-radius: 3px;
}
.nav__link:hover, .nav__link.active { color: var(--white); }

/* Nav actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language toggle */
.nav__lang {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.nav__lang-btn {
  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: background 0.18s, color 0.18s, transform 0.12s;
}
.nav__lang-btn.active {
  background: rgba(201,168,76,0.18);
  color: var(--gold);
  cursor: default;
  pointer-events: none;
}
.nav__lang-btn:not(.active):hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.nav__lang-btn:not(.active):active {
  transform: scale(0.92);
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 101;
  position: relative;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-expo), opacity 0.2s;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  /* Fine diagonal engraving lines — Italian intaglio print feel */
  background:
    repeating-linear-gradient(
      -58deg,
      rgba(249,246,241,0.018) 0px,
      rgba(249,246,241,0.018) 1px,
      transparent 1px,
      transparent 48px
    ),
    #070707;
}

/* Hard-edged flag corner fills — angular, architectural, not soft blobs */
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 0;
}
.hero__glow--green {
  /* Green wedge rising from the bottom-left corner */
  background: rgba(0, 146, 70, 0.10);
  clip-path: polygon(0 44%, 0 100%, 44% 100%);
}
.hero__glow--red {
  /* Red wedge descending from the top-right corner */
  background: rgba(206, 43, 55, 0.09);
  clip-path: polygon(56% 0, 100% 0, 100% 44%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
}

/* Rotating emblem with pizza image */
.hero__emblem {
  flex-shrink: 0;
  order: 2;
  position: relative;
  width: clamp(280px, 34vw, min(500px, calc(100vh - 200px)));
  height: clamp(280px, 34vw, min(500px, calc(100vh - 200px)));
  margin-right: clamp(24px, 4vw, 72px);
  animation: hero-spin 80s linear infinite;
}

.hero__emblem-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Image fills up to the ring inner edge (ring r=185, stroke-width=5 → inner edge at r=182.5 → 4.375% inset) */
.hero__emblem-img-wrap {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  overflow: hidden;
  animation: hero-counter-spin 80s linear infinite;
}

.hero__emblem-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

@keyframes hero-spin         { to { transform: rotate(360deg);  } }
@keyframes hero-counter-spin { to { transform: rotate(-360deg); } }

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100svh;
  }
  .hero__emblem {
    order: -1;
    width: clamp(160px, 38vw, 260px);
    height: clamp(160px, 38vw, 260px);
    margin-right: 0;
    flex-shrink: 0;
  }
  .hero__content {
    max-width: min(600px, 100% - 48px);
    margin-inline: auto;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
  }
  .hero__tricolor { margin-inline: auto; }
  .hero__ctas     { justify-content: center; }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  order: 1;
  flex: 1;
  min-width: 0;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  margin-right: 0;
  padding-top: 110px;
  padding-bottom: 90px;
  max-width: 700px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  animation: anim-rise 0.65s var(--ease-expo) 0.15s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 26px;
  animation: anim-rise 0.65s var(--ease-expo) 0.3s both;
}
.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__tricolor {
  display: flex;
  width: 110px;
  height: 4px;
  margin-bottom: 26px;
  animation: anim-rise 0.65s var(--ease-expo) 0.42s both;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 44px;
  animation: anim-rise 0.65s var(--ease-expo) 0.52s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: anim-rise 0.65s var(--ease-expo) 0.62s both;
}

@keyframes anim-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  animation: scroll-bob 2.6s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(-5px); }
  50%       { transform: translateX(-50%) translateY(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll { animation: none; }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
  background: var(--dark-bg);
  padding: 140px 0 120px;
}

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

.about__body p {
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.82;
}
.about__body p em {
  color: var(--gold);
  font-style: italic;
}

/* Fact cards */
.about__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.fact-card {
  flex: 1;
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--r-sm);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.fact-card:hover {
  background: rgba(201,168,76,0.09);
  border-color: rgba(201,168,76,0.36);
  transform: translateY(-2px);
}
.fact-card__icon { flex-shrink: 0; }
.fact-card__body {
  display: flex;
  flex-direction: column;
}
.fact-card__value {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.fact-card__label {
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-top: 3px;
  line-height: 1.35;
}

/* Temperature visual */
.about__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__temp {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px;
}
.about__temp-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.about__temp-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
.r1 { width: 180px; height: 180px; }
.r2 { width: 260px; height: 260px; }
.r3 { width: 340px; height: 340px; }
@keyframes ring-breathe {
  0%,100% { opacity: 0.12; transform: scale(1); }
  50%     { opacity: 0.26; transform: scale(1.025); }
}
.about__temp-card:hover .r1 { animation: ring-breathe 3.5s ease-in-out infinite; }
.about__temp-card:hover .r2 { animation: ring-breathe 3.5s ease-in-out 0.6s infinite; }
.about__temp-card:hover .r3 { animation: ring-breathe 3.5s ease-in-out 1.2s infinite; }

.about__temp-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  line-height: 1;
}
.about__temp-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 900;
  color: var(--gold);
}
.about__temp-deg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.4em;
  opacity: 0.75;
}
.about__temp-label {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 14px;
}


/* ═══════════════════════════════════════════════════════════════
   MENU
   ═══════════════════════════════════════════════════════════════ */
.menu-section {
  background: var(--black);
  padding: 100px 0 80px;
}

/* Tab bar */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.menu-tab {
  padding: 12px 22px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  border-radius: 0;
}
.menu-tab:hover { color: var(--white); }
.menu-tab.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

/* Tab panels */
.menu-panel {
  display: none;
  animation: panel-appear 0.4s var(--ease-expo);
}
.menu-panel.active { display: block; }
@keyframes panel-appear {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.025);
  border-left: 2px solid var(--gold);
  border-radius: 0 3px 3px 0;
}

/* Featured highlight card (signature/chef's choice) */
.menu-featured {
  margin-bottom: 32px;
}
.menu-featured .menu-card--highlight {
  border-color: rgba(201,168,76,0.45);
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, #1e1c16 0%, #181410 100%);
  padding: 32px 36px;
  border-radius: var(--r);
}
.menu-featured .menu-card__name {
  font-size: 1.52rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.menu-featured .menu-card__price {
  font-size: 1.42rem;
}
.menu-featured .menu-card__desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 56ch;
  margin-top: 2px;
}
.menu-featured .menu-card__badge {
  font-size: 0.7rem;
  padding: 5px 12px;
  margin-bottom: 16px;
}

/* Menu list (standard items) */
.menu-list {
  display: flex;
  flex-direction: column;
}
.menu-list-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s var(--ease-expo);
  cursor: default;
}
.menu-list-item:first-child { border-top: 1px solid var(--border); }
.menu-list-item:hover { padding-left: 6px; }
.menu-list-item__main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}
.menu-list-item__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}
.menu-list-item__price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-list-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-list-item__desc em {
  color: var(--green);
  font-style: italic;
}

/* Menu card (kept for non-featured contexts) */
.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease-expo), box-shadow 0.3s;
}
.menu-card:hover {
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
}
.menu-card--highlight {
  border-color: rgba(201,168,76,0.28);
  background: linear-gradient(145deg, var(--card-bg) 0%, rgba(201,168,76,0.05) 100%);
}

.menu-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.menu-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.menu-card__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.menu-card__price {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-card__desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.menu-card__desc em {
  color: var(--green);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery {
  background: var(--dark-bg);
  padding: 140px 0;
}

.gallery__sub-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dim);
  margin: 52px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}

.gallery__sub-title:first-of-type { margin-top: 56px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery__item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-expo);
}
.gallery__item:hover .gallery__img { transform: scale(1.07); }

/* Hover overlay */
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
}

/* Gold border accent */
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: border-color 0.4s;
  z-index: 2;
  pointer-events: none;
}
.gallery__item:hover::after { border-color: rgba(201,168,76,0.38); }


/* ═══════════════════════════════════════════════════════════════
   RESERVATIONS
   ═══════════════════════════════════════════════════════════════ */
.reservations {
  background: var(--black);
  padding: 100px 0;
}

.res__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.res__desc {
  color: var(--text-dim);
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.res__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.res-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.res-detail svg { flex-shrink: 0; margin-top: 1px; }
.res-detail div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.res-detail strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.res-detail span {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* Form wrapper */
.res__form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
}

.res-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.res-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.res-form__field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.res-form__field input,
.res-form__field select,
.res-form__field textarea {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.res-form__field input::placeholder,
.res-form__field textarea::placeholder {
  color: rgba(249,246,241,0.2);
}
.res-form__field input:focus,
.res-form__field select:focus,
.res-form__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.14);
  background: rgba(255,255,255,0.055);
}
.res-form__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.res-form__field select option {
  background: #1A1A1A;
  color: var(--white);
}
.res-form__field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(0.5) hue-rotate(10deg);
  cursor: pointer;
}
.res-form__field textarea { resize: vertical; min-height: 80px; }

.res-form__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
}
.res-form__note a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}
.res-form__note a:hover { color: var(--gold-light); }


/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--dark-bg);
  padding: 100px 0 120px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.contact__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease-expo);
}
.contact__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.contact__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.contact__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.contact__card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.72;
  margin-bottom: 8px;
}
.contact__sub {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
}

/* Hours table */
.hours { margin-bottom: 12px; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-dim);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hours__row:last-child { border-bottom: none; }
.hours__row span:last-child {
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
}

/* Map placeholder */
.map-placeholder {
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #0A0A0A;
  margin: 16px 0;
  border: 1px solid var(--border);
  line-height: 0;
}
.map-placeholder svg { width: 100%; }

/* Social */
.contact__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: all 0.3s var(--ease-expo);
}
.social-btn:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: #080808;
  padding-bottom: 40px;
}
.footer__tricolor {
  height: 3px;
  display: flex;
  margin-bottom: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__tagline {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.footer__nav a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 3px 0;
}
.footer__nav a:hover { color: var(--white); }

.footer__awards {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  padding: 8px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p,
.footer__bottom a {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer__bottom a {
  color: var(--gold);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--gold-light); }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid,
  .res__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__visual { display: none; }
  .contact__grid { grid-template-columns: 1fr 1fr; }

  /* Already stacked at 1100px — nothing extra needed for emblem here */

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__awards {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav collapses */
  .nav__links { display: none; }
  .nav__lang  { display: none; }
  .nav__hamburger { display: flex; }

  /* Mobile fullscreen overlay */
  .nav__links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(7,7,7,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 99;
    list-style: none;
  }
  .nav__links.mobile-open .nav__link {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--white);
  }
  .nav__links.mobile-open li:last-child .nav__link { color: var(--gold); }

  /* Hero */
  .hero__emblem {
    width: clamp(140px, 36vw, 200px);
    height: clamp(140px, 36vw, 200px);
  }
  .hero { gap: 20px; padding-top: 110px; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 4rem); }

  /* Gallery 2-col */
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__overlay { opacity: 1; }

  /* Reservations form */
  .res-form__row { grid-template-columns: 1fr; }
  .res__form-wrap { padding: 28px 24px; }

  /* Atmosphere — stack at 768px */
  .atm__row { flex-direction: column; gap: 40px; }
  .atm__divider { width: 100%; height: 1px; }
  .atm__col { padding: 0; }

  /* Events — collapse meta below body at 768px */
  .events__row { grid-template-columns: 56px 1fr; gap: 20px; }
  .events__row-meta { grid-column: 2; text-align: left; padding-top: 6px; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__nav { align-items: center; }
  .footer__awards { align-items: center; justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --container: 100% - 32px; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--tall,
  .gallery__item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .hero__emblem {
    width: 140px;
    height: 140px;
  }
  .hero { gap: 16px; padding-top: 100px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; }

  .menu-tab { padding: 10px 12px; font-size: 0.76rem; }

  .about__facts { flex-direction: column; }
  .fact-card { min-width: unset; }

  /* Atmosphere */
  .atm__row { flex-direction: column; gap: 40px; }
  .atm__divider { width: 100%; height: 1px; }
  .atm__col { padding: 0; }
  .atm__statement { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 48px; }

  /* Products */
  .products__grid { grid-template-columns: 1fr; gap: 40px; }
  .products__list { grid-template-columns: 1fr; }
  .products__item:nth-child(even)      { border-right: none; }
  .products__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .products__item:last-child           { border-bottom: none; }

  /* Events */
  .events__header { flex-direction: column; gap: 8px; align-items: flex-start; }
  .events__row { grid-template-columns: 48px 1fr; gap: 20px; }
  .events__row-meta { grid-column: 2; text-align: left; }
  .events__row-price { font-size: 1.3rem; }

  /* Occasions */
  .occasions__pills { gap: 10px; }
  .occasions__pill { font-size: 0.85rem; padding: 8px 18px; }
}


/* ═══════════════════════════════════════════════════════════════
   ATMOSPHERE
   ═══════════════════════════════════════════════════════════════ */
.atmosphere {
  padding: 120px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.atmosphere::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/oliodolivapizzeria-interior13.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  pointer-events: none;
}

/* Large italic statement replaces the eyebrow+title formula */
.atm__statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.28;
  opacity: 0.92;
  margin-bottom: 80px;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 80px;
}

/* Horizontal flex row with dividers instead of card grid */
.atm__row {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}

.atm__divider {
  width: 1px;
  flex-shrink: 0;
  background: var(--border);
  align-self: stretch;
}

.atm__col {
  flex: 1;
  padding: 0 52px;
  position: relative;
}
.atm__col:first-child { padding-left: 0; }
.atm__col:last-child  { padding-right: 0; }

.atm__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  margin-bottom: 16px;
}

.atm__heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.atm__text {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.72;
}


/* ═══════════════════════════════════════════════════════════════
   PRODUCTS & ORIGIN
   ═══════════════════════════════════════════════════════════════ */
.products {
  padding: 120px 0;
  background: var(--black);
}

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

/* Large typographic heading — no eyebrow prefix */
.products__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
}
.products__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* Subtle provenance tag below title */
.products__provenance {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.products__provenance::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

.products__text {
  font-size: 0.97rem;
  color: var(--text-dim);
  line-height: 1.78;
}

/* 2×3 grid for the ingredient list */
.products__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.products__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.products__item:nth-child(even)       { border-right: none; }
.products__item:nth-last-child(-n+2)  { border-bottom: none; }
.products__item:hover { background: var(--card-bg); }

.products__emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
}

.products__detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.products__detail strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.products__detail span {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════════
   EVENTS & TASTINGS
   ═══════════════════════════════════════════════════════════════ */
.events {
  padding: 100px 0;
  background: var(--dark-bg);
}

/* Header: label + headline on one baseline line */
.events__header {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 0;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.events__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  padding-bottom: 2px;
}

.events__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.events__headline em { color: var(--gold); }

/* Row bands — editorial style */
.events__list {
  display: flex;
  flex-direction: column;
}

.events__row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.events__row:last-child { border-bottom: none; }

.events__row-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  text-align: center;
}

.events__row-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.events__row-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 520px;
}

.events__row-meta {
  text-align: right;
  flex-shrink: 0;
}

.events__row-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.events__row-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.events__row-price em {
  font-size: 0.75rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* Featured row has a subtle gold tint on hover */
.events__row--featured .events__row-num { opacity: 0.3; }


/* ═══════════════════════════════════════════════════════════════
   OCCASIONS
   ═══════════════════════════════════════════════════════════════ */
.occasions {
  padding: 100px 0 120px;
  background: var(--black);
}

.occasions__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
}

.occasions__pill {
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.9rem;
  color: var(--text-dim);
  background: var(--card-bg);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}

.occasions__pill:hover {
  border-color: rgba(201,168,76,0.5);
  color: var(--white);
  background: rgba(201,168,76,0.06);
}

.occasions__quote {
  margin-top: 72px;
  text-align: center;
  border: none;
  padding: 0;
}

.occasions__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.38;
  opacity: 0.85;
}
