/* ============================================================
   LA PIZZERIA — REDESIGN
   Exact spec: #0a0a0a · #1a1a1a · #f5f1eb · #c9a961 · #d4443a
   ============================================================ */

/* VARIABLES */
:root {
  --bg:     #0a0a0a;
  --bg2:    #1a1a1a;
  --cream:  #f5f1eb;
  --gold:   #c9a961;
  --red:    #d4443a;
  --red2:   #b83530;
  --grey:   #999999;
  --grey2:  #666666;
  --white:  #ffffff;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', -apple-system, sans-serif;

  --nav-h:  72px;
  --max:    1200px;
  --pad:    clamp(1.5rem, 5vw, 2rem);
  --py:     clamp(5rem, 10vw, 8rem);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ============================================================
   HEADER / NAV
   ============================================================ */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--nav-h);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--grey);
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--cream); }

/* Red CTA button in nav */
.cta-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.65rem 1.5rem;
  flex-shrink: 0;
  transition: background 0.25s;
}

.cta-btn:hover { background: var(--red2); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem var(--pad) 2rem;
}

.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1.1rem; }
.mobile-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   SHARED BUTTONS
   ============================================================ */

.cta-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.cta-primary:hover {
  background: var(--red2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 68, 58, 0.35);
}

.cta-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(245, 241, 235, 0.3);
  transition: border-color 0.25s, color 0.25s;
}

.cta-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ============================================================
   SHARED SECTION HEADER
   ============================================================ */

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.accent-line {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--red);
  margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -25% 0;
  background:
    radial-gradient(ellipse at 70% 35%, rgba(212, 68, 58, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 75%, rgba(201, 169, 97, 0.05) 0%, transparent 45%),
    linear-gradient(160deg, #141414 0%, #0a0a0a 60%, #111111 100%);
  will-change: transform;
}

/* Dot-grid texture on hero */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,241,235,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,10,10,0.9) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero text */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 5.5rem); /* ≈72px at standard viewport */
  font-weight: 700;
  color: var(--cream);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  animation: fadeUp 0.9s ease 0.35s both;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem); /* ≈28px */
  font-style: italic;
  color: var(--gold);
  animation: fadeUp 0.9s ease 0.5s both;
}

.hero-description {
  font-size: 1rem;
  color: var(--grey);
  max-width: 500px;
  line-height: 1.85;
  animation: fadeUp 0.9s ease 0.65s both;
}

/* Hero image — CSS pizza art with fire glow */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeIn 1.2s ease 0.4s both;
}

.hero-pizza {
  width: min(380px, 90%);
  height: min(380px, 90%);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background:
    /* Highlight spots (cheese/toppings) */
    radial-gradient(circle at 52% 46%, rgba(255,255,255,0.5) 0%, transparent 6%),
    radial-gradient(circle at 36% 60%, rgba(255,255,255,0.4) 0%, transparent 5%),
    /* Basil / greenery */
    radial-gradient(circle at 65% 38%, rgba(70,160,55,0.8) 0%, transparent 7%),
    radial-gradient(circle at 40% 36%, rgba(70,160,55,0.7) 0%, transparent 6%),
    /* Pepperoni / toppings */
    radial-gradient(circle at 60% 62%, rgba(180,40,20,0.9) 0%, transparent 7%),
    radial-gradient(circle at 38% 58%, rgba(180,40,20,0.8) 0%, transparent 6%),
    radial-gradient(circle at 55% 48%, rgba(160,30,15,0.7) 0%, transparent 5%),
    /* Sauce pool */
    radial-gradient(ellipse at 50% 50%, rgba(200,55,30,0.55) 0%, rgba(160,25,12,0.35) 38%, transparent 55%),
    /* Crust fire glow edge */
    radial-gradient(circle at 50% 50%, transparent 41%, rgba(212,68,58,0.8) 44%, rgba(200,110,20,0.5) 51%, transparent 60%),
    /* Crust & dough base */
    radial-gradient(circle at 50% 50%, #c49040 4%, #8b4a12 40%, #5c2a06 65%, #2a0f02 100%);
  box-shadow:
    0 0 60px rgba(212, 68, 58, 0.45),
    0 0 120px rgba(212, 68, 58, 0.18),
    0 0 200px rgba(212, 68, 58, 0.07),
    0 0 30px rgba(201, 169, 97, 0.2);
}

.hero-pizza-glow {
  position: absolute;
  width: min(380px, 90%);
  height: min(380px, 90%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,68,58,0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: pulsate 3s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--grey));
  animation: scrollDown 2.2s ease-in-out infinite;
}

/* ============================================================
   À PROPOS
   ============================================================ */

.apropos {
  background: var(--bg);
  padding: var(--py) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.apropos-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

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

.apropos-text p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.apropos-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.astat { display: flex; flex-direction: column; gap: 0.2rem; }

.astat-n {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.astat-l {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey2);
}

.apropos-visual { position: relative; }

.apropos-img {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(245, 225, 200, 0.7) 0%, transparent 28%),
    radial-gradient(ellipse at 30% 75%, rgba(212, 68, 58, 0.3) 0%, transparent 40%),
    linear-gradient(155deg, #1a0e08 0%, #5c2e14 30%, #9a5030 55%, #c48050 78%, #e0a870 100%);
}

.apropos-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.badge-n {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-l {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================================================
   MENU SECTION
   ============================================================ */

.menu-section {
  background: var(--bg2);
  padding: var(--py) 0;
}

.menu-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}

/* 4-column grid as specified */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0 0 3rem;
  text-align: left;
}

.pizza-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease,
              opacity 0.75s ease var(--d, 0s),
              transform 0.75s ease var(--d, 0s);
}

.pizza-card:hover {
  border-color: rgba(212, 68, 58, 0.3);
  box-shadow: 0 6px 32px rgba(212, 68, 58, 0.12);
}

.pizza-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.pizza-thumb > :first-child:not(.pizza-hover-overlay) {
  width: 100%;
  height: 100%;
}

/* Pizza CSS art — same gradient approach, optimized for square ratio */
.margherita {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 52% 48%, rgba(255,255,255,0.55) 0%, transparent 7%),
    radial-gradient(circle at 35% 62%, rgba(255,255,255,0.45) 0%, transparent 5%),
    radial-gradient(circle at 68% 36%, rgba(70,160,55,0.85) 0%, transparent 8%),
    radial-gradient(circle at 39% 38%, rgba(70,160,55,0.75) 0%, transparent 7%),
    radial-gradient(circle at 61% 65%, rgba(70,160,55,0.65) 0%, transparent 6%),
    radial-gradient(ellipse at 50% 50%, rgba(210,55,35,0.9) 0%, rgba(170,25,15,0.65) 38%, transparent 55%),
    radial-gradient(circle at 50% 50%, #c49040 5%, #8b4a10 42%, #5c2a06 68%, #2a0f02 100%);
  transition: filter 0.55s ease, transform 0.65s ease;
  filter: grayscale(100%) brightness(0.6);
}

.carnivore {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 42% 52%, rgba(190,100,40,0.8) 0%, transparent 12%),
    radial-gradient(circle at 62% 38%, rgba(160,75,25,0.75) 0%, transparent 10%),
    radial-gradient(circle at 55% 65%, rgba(200,110,45,0.65) 0%, transparent 9%),
    radial-gradient(ellipse at 50% 50%, rgba(130,45,20,0.9) 0%, rgba(90,25,10,0.65) 42%, transparent 60%),
    radial-gradient(circle at 50% 50%, #7a3a0a 0%, #5c2a06 38%, #3d1a04 65%, #1a0802 100%);
  transition: filter 0.55s ease, transform 0.65s ease;
  filter: grayscale(100%) brightness(0.6);
}

.quattro {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 46% 44%, rgba(255,225,160,0.75) 0%, transparent 13%),
    radial-gradient(circle at 64% 58%, rgba(240,205,125,0.65) 0%, transparent 11%),
    radial-gradient(circle at 36% 62%, rgba(220,185,105,0.70) 0%, transparent 10%),
    radial-gradient(ellipse at 50% 50%, rgba(200,165,65,0.85) 0%, rgba(165,130,38,0.6) 42%, transparent 62%),
    radial-gradient(circle at 50% 50%, #c8a035 0%, #8b7018 40%, #5c4a0a 68%, #2d2305 100%);
  transition: filter 0.55s ease, transform 0.65s ease;
  filter: grayscale(100%) brightness(0.6);
}

.pepperoni {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 46% 44%, rgba(175,25,15,0.95) 0%, transparent 7%),
    radial-gradient(circle at 63% 35%, rgba(155,18,12,0.85) 0%, transparent 6%),
    radial-gradient(circle at 32% 64%, rgba(175,25,15,0.85) 0%, transparent 7%),
    radial-gradient(circle at 62% 64%, rgba(155,18,12,0.75) 0%, transparent 6%),
    radial-gradient(ellipse at 50% 50%, rgba(195,45,25,0.6) 0%, rgba(165,25,15,0.4) 42%, transparent 60%),
    radial-gradient(circle at 50% 50%, #c49040 8%, #8b4a10 42%, #5c2a06 68%, #2a0f02 100%);
  transition: filter 0.55s ease, transform 0.65s ease;
  filter: grayscale(100%) brightness(0.6);
}

/* Hover: desaturate → color */
.pizza-card:hover .margherita,
.pizza-card:hover .carnivore,
.pizza-card:hover .quattro,
.pizza-card:hover .pepperoni {
  filter: grayscale(0%) brightness(0.85);
  transform: scale(1.05);
}

.pizza-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 68, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pizza-hover-overlay span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.pizza-card:hover .pizza-hover-overlay { opacity: 1; }

.pizza-info { padding: 1.25rem; }

.pizza-info h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.pizza-desc {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.price {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

.menu-cta { text-align: center; margin-top: 1.5rem; }

/* ============================================================
   GALERIE
   ============================================================ */

.galerie {
  background: var(--bg);
  padding: var(--py) 0;
}

.galerie-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

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

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gal-img {
  width: 100%;
  height: 100%;
  transition: transform 0.65s ease, filter 0.45s ease;
  filter: grayscale(60%) brightness(0.7);
}

.gal-item:hover .gal-img {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(0.85);
}

/* Gallery CSS art */
.gi1 {
  background:
    radial-gradient(ellipse at 50% 55%, rgba(200,80,35,0.85) 0%, transparent 55%),
    linear-gradient(135deg, #8b4a10 0%, #c49040 45%, #5c2a06 100%);
}
.gi2 {
  background:
    radial-gradient(ellipse at 35% 75%, rgba(255,130,20,0.95) 0%, transparent 45%),
    radial-gradient(ellipse at 70% 25%, rgba(200,55,10,0.75) 0%, transparent 35%),
    linear-gradient(180deg, #0f0500 0%, #3d1a04 35%, #8b3800 70%, #cc5500 100%);
}
.gi3 {
  background:
    radial-gradient(ellipse at 50% 85%, rgba(180,145,80,0.35) 0%, transparent 55%),
    linear-gradient(160deg, #1a1508 0%, #2d2015 45%, #1a1205 100%);
}
.gi4 {
  background:
    radial-gradient(circle at 38% 48%, rgba(80,160,40,0.8) 0%, transparent 32%),
    radial-gradient(circle at 65% 40%, rgba(205,42,20,0.7) 0%, transparent 28%),
    linear-gradient(160deg, #080f04 0%, #141f0a 50%, #1a1205 100%);
}
.gi5 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(185,52,30,0.9) 0%, transparent 58%),
    linear-gradient(140deg, #3d1a06 0%, #c49040 55%, #8b4a10 100%);
}
.gi6 {
  background:
    radial-gradient(ellipse at 50% 25%, rgba(210,185,125,0.25) 0%, transparent 60%),
    linear-gradient(175deg, #101008 0%, #1c1c12 50%, #252514 100%);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gal-item:hover .gal-overlay { opacity: 1; }

.gal-overlay span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ============================================================
   HORAIRES & CONTACT
   ============================================================ */

.infos {
  background: var(--bg);
  padding: var(--py) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.infos-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.infos-inner h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

/* Hours table — as specified in brief */
table {
  width: 100%;
  border-collapse: collapse;
}

table td {
  padding: 0.7rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

table td:first-child { color: var(--grey); }
table td:last-child { color: var(--cream); font-weight: 500; text-align: right; }
.closed-row td { color: var(--grey2) !important; }
.closed-row td:last-child { color: var(--red) !important; font-weight: 400; }

.contact p {
  font-size: 0.88rem;
  color: var(--cream);
  line-height: 2;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact a { color: var(--cream); transition: color 0.2s; }
.contact a:hover { color: var(--gold); }

.contact-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-socials a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s;
}

.contact-socials a:hover { opacity: 0.7; }

/* ============================================================
   RESERVATION FORM
   ============================================================ */

.reservation {
  background: var(--bg2);
  padding: var(--py) 0;
}

.reservation-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Input styles exactly as specified:
   background: #0a0a0a, border: #c9a961, text: #f5f1eb */
.res-form input,
.res-form select,
.res-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(201, 169, 97, 0.35);
  color: var(--cream);
  padding: 0.9rem 1.1rem;
  font-size: 0.875rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.25s;
}

.res-form input::placeholder,
.res-form textarea::placeholder { color: var(--grey2); }

.res-form input:focus,
.res-form select:focus,
.res-form textarea:focus {
  border-color: var(--gold);
}

.res-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a961' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--bg);
  padding-right: 2.5rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}

.res-form textarea { resize: vertical; min-height: 110px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.res-form textarea {
  margin-bottom: 1rem;
  display: block;
}

.form-submit-row { text-align: center; }

.res-form .cta-primary {
  width: auto;
  min-width: 240px;
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(212, 68, 58, 0.08);
  border: 1px solid rgba(212, 68, 58, 0.25);
  color: var(--cream);
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER — simple as specified
   ============================================================ */

.footer {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-inner p {
  font-size: 0.78rem;
  color: var(--grey2);
}

.footer-inner a { color: var(--red); transition: opacity 0.2s; }
.footer-inner a:hover { opacity: 0.7; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s);
}

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

/* Pizza card reveal uses same .reveal class but also has --d stagger */
.pizza-card.reveal { opacity: 0; transform: translateY(30px); }
.pizza-card.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollDown {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  45%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  46%  { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

@keyframes pulsate {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  .galerie-grid {
    grid-template-rows: 220px 180px;
  }
}

@media (max-width: 768px) {
  .nav-links, .cta-btn { display: none; }
  .burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero-description { margin: 0 auto; }

  .apropos-grid { grid-template-columns: 1fr; }
  .apropos-img { aspect-ratio: 4/3; }

  .infos-inner { grid-template-columns: 1fr; gap: 4rem; }

  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }

  .galerie-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
  }

  .apropos-stats { flex-direction: column; gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
