@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── DESIGN TOKENS ────────────────────────────────────────────────── */
:root {
  --red:     #C0392B;
  --red-hot: #E74C3C;
  --gold:    #D4A843;
  --gold-lt: #F0C060;
  --ink:     #0A0806;
  --paper:   #F7F0E8;
  --warm:    #1C1410;
  --ash:     #2E2520;
  --smoke:   #4A3F38;
  --mist:    #A09488;

  --font-display: 'Bebas Neue', cursive;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ─── RESET ─────────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── UTILITY ────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ─── GRAIN TEXTURE OVERLAY ──────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
  pointer-events: none;
  z-index: 9999;
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(10, 8, 6, .95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(192,57,43,.35);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 4px;
  color: var(--red-hot);
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}
.nav-link {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,240,232,.7);
  position: relative;
  transition: color .25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--gold-lt); }
.nav-link:hover::after { width: 100%; }

.btn-cta-nav {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background .25s, transform .2s var(--ease-spring);
}
.btn-cta-nav:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: var(--ease) .3s;
}

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

/* Dramatic vignette + colour bleeds */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, transparent 30%, rgba(10,8,6,.9) 100%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(192,57,43,.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 85% 20%, rgba(212,168,67,.12) 0%, transparent 50%);
  z-index: 1;
}

/* Animated spotlight */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,.12) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  animation: spotlight 8s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes spotlight {
  0%   { transform: translateX(-60%) scale(1); }
  100% { transform: translateX(-40%) scale(1.3); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  padding: 120px 24px 80px;
}

.hero-logo { order: 1; }

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: .92;
  letter-spacing: 2px;
  color: var(--paper);
  text-transform: uppercase;
  animation: heroReveal 1.2s var(--ease-out) both;
}
.hero-tagline span {
  display: block;
  color: var(--red-hot);
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(50px) skewY(3deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0); }
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(.95rem, 2vw, 1.25rem);
  color: var(--mist);
  margin: 1.4rem 0 2.5rem;
  max-width: 480px;
  line-height: 1.55;
  animation: heroReveal 1.2s .2s var(--ease-out) both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: heroReveal 1.2s .4s var(--ease-out) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--paper);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  transition: background .25s, transform .25s var(--ease-spring), box-shadow .25s;
  box-shadow: 0 8px 32px rgba(192,57,43,.35);
}
.btn-primary:hover {
  background: var(--red-hot);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(231,76,60,.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--paper);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid rgba(247,240,232,.25);
  border-radius: 2px;
  transition: border-color .25s, color .25s, transform .25s var(--ease-spring);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  transform: translateY(-2px);
}

.hero-image {
  order: 2;
  width: clamp(240px, 28vw, 360px);
  flex-shrink: 0;
  animation: posterReveal 1.4s .3s var(--ease-out) both;
  position: relative;
}
@keyframes posterReveal {
  from { opacity: 0; transform: translateX(40px) rotate(3deg); }
  to   { opacity: 1; transform: translateX(0) rotate(0); }
}

.hero-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow:
    0 40px 100px rgba(0,0,0,.7),
    0 0 0 1px rgba(192,57,43,.4),
    -8px 8px 0 rgba(212,168,67,.25);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247,240,232,.1);
  animation: heroReveal 1.2s .6s var(--ease-out) both;
}
.hero-meta-item {
  text-align: left;
}
.hero-meta-item .label {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 3px;
}
.hero-meta-item .value {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--paper);
}
.hero-meta-sep {
  width: 1px; height: 40px;
  background: rgba(247,240,232,.15);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-indicator a {
  color: rgba(247,240,232,.4);
  font-size: 1.3rem;
  transition: color .2s;
}
.scroll-indicator a:hover { color: var(--gold); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTION CHROME ─────────────────────────────────────────────────── */
section { padding: 100px 0; }

.section-eyebrow {
  font-size: .72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin-top: 1rem;
}
.section-title.centered { text-align: center; }
.section-title.centered::after { margin: 1rem auto 0; }

/* ─── CONCEPT ────────────────────────────────────────────────────────── */
.concept {
  background: var(--warm);
  position: relative;
  overflow: hidden;
}
.concept::before {
  content: '⚔';
  position: absolute;
  right: -2%;
  top: 50%; transform: translateY(-50%);
  font-size: 40vw;
  opacity: .025;
  line-height: 1;
  pointer-events: none;
  color: var(--paper);
}

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

.concept-body p {
  font-size: 1.05rem;
  color: rgba(247,240,232,.72);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}
.concept-body p strong {
  color: var(--paper);
  font-weight: 600;
}

.concept-intro-big {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--paper) !important;
  line-height: 1.6 !important;
  margin-bottom: 2rem !important;
}

.concept-verdict {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-lt) !important;
  margin: 1.5rem 0 !important;
}

.concept-quote {
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  background: rgba(212,168,67,.06);
  border-radius: 0 4px 4px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(247,240,232,.85);
}

.concept-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,57,43,.12);
  border: 1px solid rgba(192,57,43,.3);
  color: var(--paper);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
}
.pill i { color: var(--red); }

.concept-aside { position: sticky; top: 100px; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
}

.cast-list {
  margin-top: 2rem;
  border: 1px solid rgba(247,240,232,.1);
  border-radius: 4px;
  overflow: hidden;
}
.cast-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(247,240,232,.07);
  transition: background .2s;
}
.cast-row:last-child { border-bottom: none; }
.cast-row:hover { background: rgba(247,240,232,.04); }
.cast-row i {
  color: var(--red);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.cast-label {
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 2px;
}
.cast-value {
  font-size: .9rem;
  color: var(--paper);
  line-height: 1.4;
}

/* ─── DATES ──────────────────────────────────────────────────────────── */
.dates {
  background: var(--ink);
  position: relative;
}
.dates-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.dates-venue {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--mist);
  font-style: italic;
}
.dates-venue strong { color: var(--paper); font-style: normal; }

.dates-list { display: flex; flex-direction: column; gap: 1px; }

.date-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  background: rgba(247,240,232,.03);
  border: 1px solid rgba(247,240,232,.06);
  border-radius: 4px;
  transition: background .25s, border-color .25s, transform .2s var(--ease);
  text-align: left;
}
.date-item:hover {
  background: rgba(192,57,43,.07);
  border-color: rgba(192,57,43,.25);
  transform: translateX(4px);
}
.date-item.special-rouen {
  border-color: rgba(212,168,67,.25);
  background: rgba(212,168,67,.04);
}
.date-item.special-rouen:hover {
  background: rgba(212,168,67,.08);
  border-color: rgba(212,168,67,.45);
}

.date-item-info { flex: 1; }

.date-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 4px;
}
.date-item-venue {
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.btn-reserve-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--paper);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background .2s, transform .2s var(--ease-spring);
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}
.btn-reserve-item:hover {
  background: var(--red-hot);
  transform: scale(1.04);
}

.dates-footer {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.dates-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,.1);
  border: 1px solid rgba(212,168,67,.3);
  color: var(--gold-lt);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 2px;
}

/* ─── AVIS ───────────────────────────────────────────────────────────── */
.avis-section {
  background: var(--ash);
  position: relative;
  overflow: hidden;
}
.avis-section::before {
  content: '★';
  position: absolute;
  left: -2%;
  top: 50%; transform: translateY(-50%);
  font-size: 35vw;
  opacity: .03;
  line-height: 1;
  pointer-events: none;
  color: var(--paper);
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.avis-card {
  background: rgba(247,240,232,.04);
  border: 1px solid rgba(247,240,232,.08);
  border-radius: 4px;
  padding: 1.8rem;
  transition: border-color .25s, transform .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.avis-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 14px;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(192,57,43,.15);
  line-height: 1;
  pointer-events: none;
}
.avis-card:hover {
  border-color: rgba(212,168,67,.3);
  transform: translateY(-4px);
}

.avis-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  gap: 1rem;
}
.avis-user { display: flex; align-items: center; gap: .8rem; }
.avis-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--smoke), var(--ash));
  border: 1px solid rgba(247,240,232,.15);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--paper);
  font-size: .9rem;
}
.avis-user-info strong {
  display: block;
  font-size: .9rem;
  color: var(--paper);
}
.avis-user-info p {
  font-size: .75rem;
  color: var(--mist);
  margin: 0;
}
.avis-rating {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
}

.avis-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: .6rem;
}
.avis-text {
  font-size: .88rem;
  color: rgba(247,240,232,.65);
  line-height: 1.6;
  margin-bottom: .8rem;
}
.avis-date {
  font-size: .75rem;
  color: var(--mist);
  font-style: italic;
}

/* ─── PHOTOS ─────────────────────────────────────────────────────────── */
.photos {
  background: var(--warm);
  position: relative;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
}

.photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
}
.photo-overlay {
  position: absolute; inset: 0;
  background: rgba(10,8,6,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.photo-overlay i { font-size: 1.8rem; color: var(--paper); }
.photo-item:hover img { transform: scale(1.06); filter: brightness(.85); }
.photo-item:hover .photo-overlay { opacity: 1; }

/* ─── LIGHTBOX ───────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,8,6,.97);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none;
  color: var(--mist); font-size: 2rem;
  cursor: pointer; transition: color .2s, transform .3s;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { color: var(--paper); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(247,240,232,.07);
  border: 1px solid rgba(247,240,232,.15);
  color: var(--paper); font-size: 1.3rem;
  cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s var(--ease-spring);
}
.lightbox-nav:hover { background: rgba(192,57,43,.3); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
#lightboxImage { max-width: 90%; max-height: 88vh; object-fit: contain; border-radius: 4px; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: .8rem; letter-spacing: 2px; color: var(--mist);
  background: rgba(247,240,232,.05); padding: 6px 20px; border-radius: 40px;
  border: 1px solid rgba(247,240,232,.1);
}

/* ─── CONTACT ────────────────────────────────────────────────────────── */
.contact {
  background: var(--ink);
  border-top: 1px solid rgba(247,240,232,.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(247,240,232,.08);
  border-radius: 4px;
  transition: border-color .25s, background .25s;
}
.contact-item:hover {
  border-color: rgba(192,57,43,.3);
  background: rgba(192,57,43,.04);
}
.contact-item i {
  font-size: 1.2rem;
  color: var(--red);
  margin-top: 2px;
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}
.contact-item strong {
  display: block;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: .95rem;
  color: var(--paper);
  transition: color .2s;
}
.contact-item a:hover { color: var(--gold-lt); }

.contact-form {
  background: rgba(247,240,232,.03);
  border: 1px solid rgba(247,240,232,.08);
  border-radius: 4px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: .6rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  background: rgba(247,240,232,.05);
  border: 1px solid rgba(247,240,232,.12);
  border-radius: 2px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .25s, background .25s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(192,57,43,.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  background: var(--red);
  color: var(--paper);
  border: none;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s var(--ease-spring), box-shadow .2s;
  box-shadow: 0 6px 24px rgba(192,57,43,.3);
}
.btn-submit:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(231,76,60,.45);
}

.form-message {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  border-radius: 2px;
  font-size: .88rem;
  display: none;
}
.form-message.success {
  background: rgba(39,174,96,.1);
  border: 1px solid rgba(39,174,96,.3);
  color: #6fcf97;
  display: block;
}
.form-message.error {
  background: rgba(192,57,43,.1);
  border: 1px solid rgba(192,57,43,.3);
  color: #eb8b82;
  display: block;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--warm);
  border-top: 1px solid rgba(247,240,232,.06);
  padding: 3rem 0 2rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: .3rem;
}
.footer-logo p {
  font-size: .82rem;
  color: var(--mist);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(247,240,232,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--mist);
  font-size: 1rem;
  transition: border-color .2s, color .2s, transform .2s var(--ease-spring);
}
.footer-social a:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247,240,232,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--smoke);
  letter-spacing: .5px;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image { order: -1; width: clamp(200px, 55vw, 300px); margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-meta { justify-content: center; }

  .concept-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .concept-aside { position: static; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 64px; left: -100%;
    flex-direction: column;
    background: rgba(10,8,6,.98);
    backdrop-filter: blur(20px);
    width: 100%; height: calc(100svh - 64px);
    padding: 2.5rem 2rem;
    align-items: flex-start;
    gap: 1.8rem;
    border-right: 1px solid rgba(247,240,232,.06);
    transition: left .4s var(--ease);
  }
  .nav-menu.active { left: 0; }
  .nav-link { font-size: 1rem; }
  .btn-cta-nav { width: 100%; text-align: center; justify-content: center; }

  .dates-header { flex-direction: column; align-items: flex-start; }
  .date-item { grid-template-columns: 1fr; gap: 1rem; }

  .photos-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-content { flex-direction: column; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }

  .avis-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-tagline { font-size: 4rem; }
  .hero-meta { flex-direction: column; gap: 1rem; }
  .hero-meta-sep { display: none; }
  .section-title { font-size: 2.5rem; }
  .photos-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .contact-form { padding: 1.5rem; }
}
