/* ============================================
   Amallay × Maoka — Week-end Immersif
   Charte : bleu électrique, indigo, or, ambre
   ============================================ */

:root {
  --blue-deep: #0a1628;
  --blue-electric: #1a3a6b;
  --indigo: #2d1b69;
  --indigo-light: #4a2d8a;
  --gold: #d4a853;
  --gold-light: #f0d078;
  --gold-glow: rgba(212, 168, 83, 0.35);
  --amber: #c47d2a;
  --sage: #A9C3B6;
  --sage-muted: rgba(169, 195, 182, 0.15);
  --beige: #e8dcc8;
  --text-warm: #F5F0E8;
  --white: #ffffff;
  --text: #F5F0E8;
  --text-muted: #a8a0b8;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 40px var(--gold-glow);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--blue-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

em { font-style: italic; color: var(--gold-light); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Typography ---- */
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 5.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section__desc {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--blue-deep);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--gold-glow), 0 8px 24px rgba(0,0,0,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--light {
  border-color: rgba(255,255,255,0.4);
}

.btn--full { width: 100%; }

.btn--cta-pricing {
  min-height: 52px;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  box-shadow: 0 0 50px var(--gold-glow), 0 8px 28px rgba(0, 0, 0, 0.35);
}

.btn--cta-pricing:hover,
.btn--cta-pricing:focus-visible {
  box-shadow: 0 0 70px var(--gold-glow), 0 12px 36px rgba(0, 0, 0, 0.4);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #1d9c4f 0%, #25d366 100%);
  color: var(--white);
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: linear-gradient(135deg, #22b35a 0%, #2ee676 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.38);
}

.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ---- Header / Nav ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  height: 100%;
}

.nav__brand {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: start;
  text-decoration: none;
  transition: opacity var(--transition);
}

.nav__brand:hover {
  opacity: 0.88;
}

.nav__brand-logo {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__brand-logo--amallay {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 83, 0.25);
}

.nav__brand-logo--maoka {
  height: 28px;
  width: auto;
  max-width: 110px;
}

.nav__brand-sep {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.65;
  line-height: 1;
}

.nav__menu {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.active {
  color: var(--gold-light);
}

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__link--cta {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--blue-deep) !important;
  border-radius: 50px;
  font-weight: 600;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.nav__toggle {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
  border-radius: 2px;
}

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

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -10%;
  background-image: url('../assets/images/hero.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(45, 27, 105, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(26, 58, 107, 0.45) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 22, 40, 0.65) 0%, rgba(10, 22, 40, 0.88) 70%, var(--blue-deep) 100%);
}

.hero__spiral {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 83, 0.12);
  pointer-events: none;
}

.hero__spiral--1 {
  width: 500px;
  height: 500px;
  top: 10%;
  right: -10%;
  animation: pulse-spiral 8s ease-in-out infinite;
}

.hero__spiral--2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: -5%;
  animation: pulse-spiral 6s ease-in-out infinite reverse;
}

@keyframes pulse-spiral {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
  50% { transform: scale(1.08) rotate(10deg); opacity: 0.7; }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  background: rgba(10, 22, 40, 0.4);
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-warm);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero__dates {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

/* ---- Countdown ---- */
.countdown {
  margin-bottom: 2rem;
}

.countdown__items {
  display: flex;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
}

.countdown__items[hidden] {
  display: none;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 0.65rem 0.85rem;
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(212, 168, 83, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.countdown__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1;
  color: var(--gold-light);
}

.countdown__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.25rem;
}

.countdown__live {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  text-align: center;
  padding: 1rem;
}

.countdown__live[hidden] {
  display: none;
}

.hero__dates-icon {
  width: 20px;
  height: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Wave Divider ---- */
.wave-divider {
  color: var(--blue-deep);
  background: var(--blue-deep);
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
}

/* ---- Sections ---- */
.section {
  padding: 5rem 0;
  position: relative;
}

.section--artist {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45, 27, 105, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(169, 195, 182, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0d1a30 0%, var(--blue-deep) 100%);
  color: var(--text);
}

.section--artist .section__title { color: var(--white); }
.section--artist .section__label { color: var(--sage); }

/* ---- Artist ---- */
.artist {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  padding: 1rem 0;
}

.artist__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.artist__visual {
  position: relative;
  justify-self: center;
}

.artist__frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45, 27, 105, 0.2);
}

.artist__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 2;
  opacity: 0.5;
  pointer-events: none;
}

.artist__halo {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.2) 0%, transparent 70%);
  z-index: 0;
}

.artist__bio {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.artist__social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: var(--text-warm);
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(169, 195, 182, 0.3);
  border-radius: 50px;
  transition: var(--transition);
}

.artist__social svg { width: 20px; height: 20px; }

.artist__social:hover {
  background: var(--sage-muted);
  border-color: var(--sage);
  color: var(--sage);
}

/* ---- Event ---- */
.section--event {
  background: linear-gradient(180deg, var(--blue-deep) 0%, var(--blue-electric) 50%, var(--blue-deep) 100%);
}

.event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.event__text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.event__text strong { color: var(--gold-light); }

.event__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.event__visual img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.event__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 27, 105, 0.3), transparent);
  pointer-events: none;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.pillar:hover {
  border-color: rgba(212, 168, 83, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.pillar__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.pillar__icon svg { width: 100%; height: 100%; }

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Programme / Timeline ---- */
.section--program {
  background: var(--blue-deep);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(45, 27, 105, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(26, 58, 107, 0.2) 0%, transparent 50%);
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.timeline__day {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.timeline__day::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber), transparent);
}

.timeline__day-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.timeline__day-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
}

.timeline__day-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
}

.timeline__day-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline__time {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.15rem;
}

.timeline__content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.timeline__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.timeline__content em {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline__item--tbc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(169, 195, 182, 0.25);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 0.25rem;
}

.timeline__item--tbc .timeline__content h4 {
  color: var(--text-muted);
}

.timeline__tbc-note {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--sage);
  opacity: 0.85;
}

/* ---- Venue ---- */
.section--venue {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(45, 27, 105, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(26, 58, 107, 0.25) 0%, transparent 50%),
    var(--blue-deep);
  padding: 5rem 0;
}

.venue__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.venue__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.venue__desc strong { color: var(--gold-light); }

.venue__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
}

.venue__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-lg);
}

.venue__address {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.venue__address svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.venue__address h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.venue__address p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.venue__gps {
  margin-top: 0.5rem;
  font-size: 0.8rem !important;
  color: var(--gold) !important;
  opacity: 0.85;
}

.venue__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.venue__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.2);
  min-height: 320px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.venue__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}

.venue__map-facade {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 380px;
  padding: 2rem 1.5rem;
  margin: 0;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(45, 27, 105, 0.45) 0%, transparent 65%),
    linear-gradient(160deg, rgba(26, 58, 107, 0.35) 0%, rgba(10, 22, 40, 0.92) 100%);
  transition: background var(--transition), box-shadow var(--transition);
}

.venue__map-facade:hover,
.venue__map-facade:focus-visible {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(45, 27, 105, 0.55) 0%, transparent 65%),
    linear-gradient(160deg, rgba(26, 58, 107, 0.45) 0%, rgba(10, 22, 40, 0.95) 100%);
  box-shadow: inset 0 0 0 1px rgba(212, 168, 83, 0.25);
  outline: none;
}

.venue__map-facade-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.35);
  color: var(--gold-light);
}

.venue__map-facade-pin svg {
  width: 28px;
  height: 28px;
}

.venue__map-facade-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.venue__map-facade-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.5;
}

.venue__map-facade-cta {
  margin-top: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: 50px;
}

.venue__gallery-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.35rem;
}

.venue__gallery-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.venue__gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .venue__gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.venue__gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.12);
  background: rgba(255, 255, 255, 0.03);
  margin: 0;
  padding: 0;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.venue__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.venue__gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.venue__gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 22, 40, 0.45);
  opacity: 0;
  transition: opacity var(--transition);
}

.venue__gallery-zoom svg {
  width: 32px;
  height: 32px;
  color: var(--gold-light);
}

.venue__gallery-item:hover,
.venue__gallery-item:focus-visible {
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  outline: none;
}

.venue__gallery-item:hover img,
.venue__gallery-item:focus-visible img {
  transform: scale(1.06);
}

.venue__gallery-item:hover .venue__gallery-zoom,
.venue__gallery-item:focus-visible .venue__gallery-zoom {
  opacity: 1;
}

.venue__gallery-item.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  border-color: rgba(212, 168, 83, 0.25);
  cursor: default;
}

.venue__gallery-item.is-empty::after {
  content: 'Photo à venir';
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.venue__gallery-item.is-empty img,
.venue__gallery-item.is-empty .venue__gallery-zoom {
  display: none;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(960px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightbox-in 0.25s ease;
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox__close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.lightbox__close svg {
  width: 18px;
  height: 18px;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: var(--gold);
  color: var(--blue-deep);
  outline: none;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(90vh - 4rem);
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 168, 83, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--beige);
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
}

/* ---- Pricing ---- */
.section--pricing {
  background: linear-gradient(180deg, var(--blue-deep), #0d1f3c);
}

.pricing {
  max-width: 960px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pricing__header {
  margin-bottom: 2.5rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.pricing__card {
  margin-top: 0;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.pricing__card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.pricing__card--featured {
  border-color: rgba(212, 168, 83, 0.38);
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.08);
}

.pricing__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.08);
  margin-bottom: 1rem;
}

.pricing__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.pricing__dates {
  font-size: 0.88rem;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing__amount {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
}

.pricing__currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.pricing__note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pricing__includes {
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing__card .btn {
  margin-top: auto;
}

.pricing__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing__includes li:last-child { border-bottom: none; }

.pricing__includes svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing__reassurance {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--sage);
  line-height: 1.5;
}

.org {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.org__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.org__text strong { color: var(--gold-light); }

.org__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.org__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}

.org__sep {
  color: var(--gold);
  font-size: 1.25rem;
}

/* ---- Contact / Booking Form ---- */
.section--contact {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(45, 27, 105, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 90%, rgba(212, 168, 83, 0.06) 0%, transparent 45%),
    var(--blue-deep);
  padding-bottom: 7rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact__intro {
  padding-right: 1rem;
}

.contact__intro .section__title {
  margin-bottom: 1.5rem;
}

.contact__intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact__highlights li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.contact__highlights li:hover {
  border-color: rgba(212, 168, 83, 0.28);
}

.contact__highlights svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact .booking-form {
  width: 100%;
}

/* Booking form card */
.booking-form {
  position: relative;
  padding: 0;
  background: linear-gradient(160deg, rgba(45, 27, 105, 0.25) 0%, rgba(10, 22, 40, 0.95) 40%, rgba(26, 58, 107, 0.15) 100%);
  border: 1px solid rgba(212, 168, 83, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(212, 168, 83, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.booking-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--amber), var(--gold), transparent);
  z-index: 2;
}

.booking-form__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.booking-form__header {
  position: relative;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.booking-form__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.booking-form__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.booking-form__badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  background: rgba(212, 168, 83, 0.08);
  white-space: nowrap;
}

.booking-form__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.booking-form__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.18);
  border-radius: var(--radius);
}

.booking-form__price-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-form__price-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
}

.booking-form__price-value small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-left: 0.15rem;
}

.booking-form__fields {
  position: relative;
  padding: 1.75rem 2rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  padding-left: 0.15rem;
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.form-group--formule {
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.form-group__legend {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-left: 0.15rem;
}

.formule-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.formule-option {
  display: block;
  cursor: pointer;
}

.formule-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.formule-option__card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(212, 168, 83, 0.18);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.formule-option input:checked + .formule-option__card {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
}

.formule-option:hover .formule-option__card,
.formule-option input:focus-visible + .formule-option__card {
  border-color: rgba(212, 168, 83, 0.45);
}

.formule-option__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}

.formule-option__detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.formule-option__price {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
}

.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-icon {
  position: absolute;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.7;
  pointer-events: none;
  transition: opacity var(--transition), color var(--transition);
  z-index: 1;
}

.form-input-icon svg {
  width: 18px;
  height: 18px;
}

.form-input-wrap input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(212, 168, 83, 0.18);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  min-height: 52px;
}

.form-input-wrap input::placeholder {
  color: var(--text-muted);
  opacity: 0.55;
}

.form-input-wrap input:hover {
  border-color: rgba(212, 168, 83, 0.32);
  background: rgba(10, 22, 40, 0.7);
}

.form-input-wrap input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(10, 22, 40, 0.8);
  box-shadow:
    0 0 0 3px rgba(212, 168, 83, 0.12),
    0 0 20px rgba(212, 168, 83, 0.08);
}

.form-input-wrap:focus-within .form-input-icon {
  opacity: 1;
  color: var(--gold-light);
}

.form-input-wrap input.is-invalid {
  border-color: #e07070;
  box-shadow: 0 0 0 3px rgba(224, 112, 112, 0.12);
}

.form-input-wrap:has(input.is-invalid) .form-input-icon {
  color: #e07070;
  opacity: 1;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #f08080;
  margin-top: 0.4rem;
  padding-left: 0.15rem;
  min-height: 1.1em;
}

.booking-form__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 2rem;
  color: rgba(212, 168, 83, 0.35);
}

.booking-form__divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.25), transparent);
}

.booking-form__divider svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.6;
}

.booking-form__submit {
  position: relative;
  padding: 0.75rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.booking-form__submit .btn--whatsapp {
  width: 100%;
  max-width: 280px;
  min-height: 46px;
  padding: 0.7rem 1.4rem;
  justify-content: center;
}

.booking-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn--whatsapp:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.booking-form__hint {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  opacity: 0.8;
}

.booking-form__note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.85rem;
  max-width: 320px;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0.75;
  text-align: left;
}

.booking-form__note svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.7;
}

.contact__links-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 0.25rem;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact__card svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact__card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.contact__card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact__card:hover {
  border-color: rgba(212, 168, 83, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(4px);
}

.contact__card--whatsapp {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.25);
}

.contact__card--whatsapp svg { color: #25d366; }

.contact__card--whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
}

/* ---- Footer ---- */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
  background: #060f1c;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  transition: color var(--transition);
}

.footer__link-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__link:hover { color: var(--gold-light); }

body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: contain;
}

/* ---- FAB WhatsApp ---- */
.fab-whatsapp {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d9c4f, #25d366);
  color: var(--white);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 3px 14px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.fab-whatsapp svg { width: 22px; height: 22px; }

.fab-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.45);
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__spiral, .hero__scroll-line { animation: none; }
  .hero__bg { transform: none !important; }
  .lightbox__dialog { animation: none; }
}

/* ---- Responsive ---- */
@media (max-width: 1023px) {
  .nav__menu {
    gap: 1.25rem;
  }

  .nav__link {
    font-size: 0.8rem;
  }
}

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

@media (max-width: 900px) {
  .artist,
  .event,
  .contact,
  .venue__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__intro {
    padding-right: 0;
    text-align: center;
  }

  .contact__intro .section__label {
    display: inline-block;
  }

  .booking-form__header,
  .booking-form__fields,
  .booking-form__divider,
  .booking-form__submit {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .venue__map { min-height: 280px; }

  .venue__map iframe,
  .venue__map-facade { min-height: 280px; }

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

  .artist__visual { max-width: 360px; }

  .event__visual { order: -1; }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(2.25rem, 9vw, 2.75rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .countdown__item {
    min-width: 48px;
    padding: 0.5rem 0.65rem;
  }
}

@media (max-width: 768px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav__toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav__brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    gap: 0.45rem;
  }

  .nav__brand-logo--amallay {
    height: 34px;
    width: 34px;
  }

  .nav__brand-logo--maoka {
    height: 22px;
    max-width: 80px;
  }

  .nav__brand-sep {
    font-size: 0.75rem;
  }

  .nav__menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(16px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .nav__link--cta {
    margin: 0.5rem 1.5rem;
    display: inline-flex;
    width: calc(100% - 3rem);
    justify-content: center;
  }

  .section { padding: 3.5rem 0; }

  .section--venue { padding: 3.5rem 0; }

  .venue__actions {
    flex-direction: column;
  }

  .venue__actions .btn { width: 100%; }

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

  .pricing__amount { font-size: 3rem; }

  .fab-whatsapp {
    bottom: 1rem;
    right: 1rem;
    width: 46px;
    height: 46px;
  }

  .fab-whatsapp svg { width: 20px; height: 20px; }

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

  .booking-form__header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-form__submit .btn--whatsapp {
    max-width: 100%;
  }
}
