/* ============================================
   PIZZA BELLA — Feu de bois, artisanal, vivant
   ============================================ */

@font-face {
  font-family: 'PizzaScript';
  src: local('Pinyon Script');
}

:root {
  --noir-four: #181210;
  --noir-profond: #0e0a08;
  --braise: #c1440e;
  --braise-vive: #e85d1f;
  --safran: #e8a23d;
  --safran-clair: #f4c869;
  --creme: #f7ecda;
  --creme-pale: #fffaf0;
  --olive: #5c6e4a;
  --bois-clair: #d9c4a3;
  --ombre: rgba(14, 10, 8, 0.55);
  --ff-display: 'Caveat', cursive;
  --ff-script: 'Pinyon Script', cursive;
  --ff-title: 'Fraunces', serif;
  --ff-body: 'Karla', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--creme);
  color: var(--noir-profond);
  font-family: var(--ff-body);
  overflow-x: hidden;
  position: relative;
}

/* Texture papier kraft / grain subtil */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

::selection { background: var(--braise); color: var(--creme-pale); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--creme); }
::-webkit-scrollbar-thumb { background: var(--braise); border-radius: 10px; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(14, 10, 8, 0.0);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(14, 10, 8, 0.92);
  backdrop-filter: blur(8px);
  padding: 8px 28px;
  box-shadow: 0 6px 24px var(--ombre);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-script);
  font-size: 1.9rem;
  color: var(--creme-pale);
  letter-spacing: 0.5px;
}
.nav-logo img { height: 46px; width: auto; border-radius: 6px; }
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links li { margin-left: 34px; }
.nav-links li:first-child { margin-left: 0; }
.nav-links a {
  color: var(--creme-pale);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--braise-vive);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--safran-clair); }
.nav-links a:hover::after { width: 100%; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}
.nav-burger span {
  width: 26px; height: 2px;
  background: var(--creme-pale);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--noir-profond);
  overflow: hidden;
  isolation: isolate;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 75%, rgba(193,68,14,0.55), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(232,162,61,0.18), transparent 70%);
  z-index: 0;
}
.hero-embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ember {
  position: absolute;
  bottom: -10px;
  width: 5px; height: 5px;
  background: var(--safran-clair);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px var(--braise-vive);
  animation: rise 7s linear infinite;
  opacity: 0;
}
@keyframes rise {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10% { opacity: 1; }
  90% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-92vh) translateX(var(--drift, 30px)); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 40px;
}
.hero-tagline-top {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  color: var(--safran-clair);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}
.hero-logo-wrap {
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}
.hero-logo-wrap img {
  max-width: 480px;
  width: 80vw;
  margin: 0 auto;
  filter: drop-shadow(0 10px 40px rgba(193,68,14,0.4));
}
.hero-sub {
  font-family: var(--ff-title);
  font-weight: 500;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--creme);
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.65s forwards;
}
.hero-flag {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.hero-flag span { width: 30px; height: 5px; border-radius: 2px; }
.hero-flag span:nth-child(1) { background: #3c8a4f; }
.hero-flag span:nth-child(2) { background: var(--creme-pale); }
.hero-flag span:nth-child(3) { background: #c1440e; }

.hero-cta {
  margin-top: 42px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tagline-top, .hero-logo-wrap, .hero-sub, .hero-flag, .hero-cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--braise-vive), var(--braise));
  color: var(--creme-pale);
  box-shadow: 0 8px 24px rgba(193,68,14,0.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(193,68,14,0.6); }
.btn-outline {
  border-color: var(--creme);
  color: var(--creme);
  background: transparent;
}
.btn-outline:hover { background: var(--creme); color: var(--noir-profond); transform: translateY(-3px); }

.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--safran-clair);
  opacity: 0.8;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ============ SECTION HEADERS ============ */
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 80px 0; }
.section-label {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--braise);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--ff-title);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--noir-profond);
}
.section-title em {
  font-style: italic;
  color: var(--braise);
  font-family: var(--ff-script);
  font-weight: 400;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-desc {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #4a3d34;
  max-width: 540px;
}
.center .section-desc { margin-left: auto; margin-right: auto; }

/* ============ ABOUT / STORY ============ */
.story {
  background: var(--creme);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.story-img-wrap {
  position: relative;
}
.story-img-wrap img {
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(14,10,8,0.35);
  transform: rotate(-2deg);
}
.story-badge {
  position: absolute;
  bottom: -26px; right: -26px;
  background: var(--braise);
  color: var(--creme-pale);
  width: 118px; height: 118px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--ff-title);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(193,68,14,0.5);
  transform: rotate(8deg);
  border: 3px dashed rgba(247,236,218,0.5);
}
.story-badge .num { font-size: 1.7rem; line-height: 1; }
.story-badge .txt { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; font-family: var(--ff-body); }

.story-text p { font-size: 1.08rem; line-height: 1.75; color: #4a3d34; margin-bottom: 18px; }
.story-marks { display: flex; gap: 36px; margin-top: 34px; flex-wrap: wrap; }
.story-mark { display: flex; align-items: center; gap: 12px; margin-right: 36px; margin-bottom: 14px; }
.story-mark svg { flex-shrink: 0; color: var(--braise); margin-right: 4px; }
.story-mark span { font-family: var(--ff-body); font-weight: 700; font-size: 0.92rem; color: var(--noir-profond); }

/* ============ TRUCK SCHEDULE ============ */
.schedule {
  background: var(--noir-profond);
  color: var(--creme-pale);
  position: relative;
  overflow: hidden;
}
.schedule::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(193,68,14,0.35), transparent 70%);
  z-index: 0;
}
.schedule .section-label { color: var(--safran-clair); }
.schedule .section-title { color: var(--creme-pale); }
.schedule .section-desc { color: var(--bois-clair); }

.week-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 10px;
}
.day-card {
  background: rgba(247,236,218,0.04);
  border: 1px solid rgba(247,236,218,0.12);
  border-radius: 16px;
  padding: 28px 18px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.day-card:hover {
  transform: translateY(-8px);
  background: rgba(193,68,14,0.12);
  border-color: var(--braise);
}
.day-card .day-name {
  font-family: var(--ff-title);
  font-size: 1.25rem;
  color: var(--safran-clair);
  margin-bottom: 14px;
  font-weight: 600;
}
.day-card .day-pin {
  width: 38px; height: 38px;
  margin: 0 auto 14px;
  color: var(--braise-vive);
}
.day-card .day-place {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--creme-pale);
  line-height: 1.35;
  margin-bottom: 6px;
}
.day-card .day-city {
  font-size: 0.82rem;
  color: var(--bois-clair);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.day-card .day-time {
  margin-top: 14px;
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--noir-profond);
  background: var(--safran-clair);
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 700;
}

.schedule-note {
  margin-top: 36px;
  text-align: center;
  font-family: var(--ff-title);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--bois-clair);
  position: relative;
  z-index: 1;
}

/* ============ MENU ============ */
.menu { background: var(--creme); }
.menu-sizes {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 50px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--braise);
}
.menu-sizes span { display: flex; align-items: center; gap: 8px; }
.menu-sizes .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--safran); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px dashed #d9c4a3;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-left { flex: 1; }
.menu-item-name {
  font-family: var(--ff-title);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--noir-profond);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-item-name .leaf { color: var(--olive); font-size: 0.9rem; }
.menu-item-desc {
  font-size: 0.93rem;
  color: #6b5d50;
  line-height: 1.5;
}
.menu-item-price {
  flex-shrink: 0;
  text-align: right;
  font-family: var(--ff-title);
  font-weight: 700;
  white-space: nowrap;
}
.menu-item-price .p31 { font-size: 1.1rem; color: var(--braise); }
.menu-item-price .sep { color: var(--bois-clair); margin: 0 4px; font-weight: 400; }
.menu-item-price .p40 { font-size: 1.3rem; color: var(--braise); }

.menu-season {
  margin-top: 50px;
  background: var(--noir-profond);
  border-radius: 18px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.menu-season-text { color: var(--creme-pale); }
.menu-season-text .lbl {
  font-family: var(--ff-script);
  font-size: 1.8rem;
  color: var(--safran-clair);
  display: block;
  margin-bottom: 4px;
}
.menu-season-text p { color: var(--bois-clair); font-size: 0.95rem; max-width: 420px; }

/* ============ GALLERY ============ */
.gallery { background: var(--noir-profond); }
.gallery .section-label { color: var(--safran-clair); }
.gallery .section-title { color: var(--creme-pale); }
.gallery .section-desc { color: var(--bois-clair); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item::after {
  content: attr(data-name);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(to top, rgba(14,10,8,0.92), transparent);
  color: var(--creme-pale);
  font-family: var(--ff-title);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item.big { grid-row: span 2; }

/* ============ EVENTS ============ */
.events { background: var(--creme); position: relative; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.event-card {
  background: var(--creme-pale);
  border-radius: 20px;
  padding: 44px 38px;
  position: relative;
  border: 1px solid #ecdfc6;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(14,10,8,0.2); }
.event-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--braise), var(--safran));
}
.event-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--braise), var(--braise-vive));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--creme-pale);
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(193,68,14,0.35);
}
.event-card h3 {
  font-family: var(--ff-title);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--noir-profond);
}
.event-card p { color: #5a4c3f; line-height: 1.65; margin-bottom: 22px; }
.event-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.event-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #4a3d34;
}
.event-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--braise); }
.event-card .btn { width: max-content; }

.events-banner {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: linear-gradient(120deg, var(--olive), #46552f);
  border-radius: 18px;
  padding: 30px 38px;
  color: var(--creme-pale);
}
.events-banner-text strong { font-family: var(--ff-title); font-size: 1.2rem; display: block; margin-bottom: 4px; }
.events-banner-text span { color: #d8e0c9; font-size: 0.92rem; }

/* ============ CONTACT / FOOTER ============ */
.contact {
  background: var(--noir-profond);
  color: var(--creme-pale);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact .section-label { color: var(--safran-clair); }
.contact .section-title { color: var(--creme-pale); }

.contact-info { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(232,162,61,0.12);
  color: var(--safran-clair);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row h4 { font-family: var(--ff-title); font-size: 1.05rem; margin-bottom: 4px; color: var(--creme-pale); }
.contact-row p, .contact-row a { color: var(--bois-clair); font-size: 0.95rem; line-height: 1.5; }
.contact-row a:hover { color: var(--safran-clair); }

.social-row { display: flex; gap: 14px; margin-top: 10px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(247,236,218,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--creme-pale);
  transition: 0.25s;
}
.social-row a:hover { background: var(--braise); border-color: var(--braise); transform: translateY(-3px); }

.contact-form {
  background: rgba(247,236,218,0.04);
  border: 1px solid rgba(247,236,218,0.12);
  border-radius: 20px;
  padding: 38px;
}
.contact-form h3 { font-family: var(--ff-title); font-size: 1.3rem; margin-bottom: 22px; color: var(--creme-pale); }
.form-row { display: flex; gap: 16px; }
.form-group { flex: 1; margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bois-clair);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(247,236,218,0.07);
  border: 1px solid rgba(247,236,218,0.18);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--creme-pale);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.form-group select option { color: #000; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #8a7c6e; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--braise-vive);
  background: rgba(247,236,218,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }
.form-success {
  display: none;
  background: rgba(92,110,74,0.2);
  border: 1px solid var(--olive);
  color: var(--creme-pale);
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 16px;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 90px;
  padding-top: 30px;
  border-top: 1px solid rgba(247,236,218,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8a7c6e;
}
.footer-bottom .flag-mini { display: inline-flex; gap: 3px; vertical-align: middle; margin: 0 4px; }
.footer-bottom .flag-mini span { width: 10px; height: 10px; border-radius: 50%; }
.footer-bottom .flag-mini span:nth-child(1) { background: #3c8a4f; }
.footer-bottom .flag-mini span:nth-child(2) { background: #f7ecda; }
.footer-bottom .flag-mini span:nth-child(3) { background: #c1440e; }

/* ============ FLOATING TRUCK CTA ============ */
.floating-cta {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  background: var(--braise);
  color: var(--creme-pale);
  border-radius: 100px;
  padding: 14px 24px 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 12px 30px rgba(193,68,14,0.5);
  cursor: pointer;
  transition: transform 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.floating-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-cta:hover { transform: translateY(-4px); }

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ============ MODAL (gallery lightbox) ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(14,10,8,0.93);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: var(--creme-pale);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-caption {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  color: var(--safran-clair);
  font-family: var(--ff-title);
  font-style: italic;
  font-size: 1.1rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .week-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 200px); }
  .gallery-item.big { grid-row: span 1; }
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .events-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 72vw;
    background: var(--noir-profond);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 0 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .week-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(7, 240px); }
  .gallery-item.big { grid-row: span 1; }
  .form-row { flex-direction: column; gap: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .events-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .week-strip { grid-template-columns: 1fr 1fr; }
  .section { padding: 80px 0; }
  .story-badge { width: 92px; height: 92px; right: -10px; bottom: -16px; }
}

