/* Viva Italia — piste 1 « Soir de scène »
   Même page, autre lumière. Mobile first. */

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/playfair-display-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/playfair-display-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-display-latin-700-normal.woff2") format("woff2");
}

:root {
  --bg: #2a1a14;
  --bg-2: #3a241c;
  --ink: #fbf4e8;
  --muted: #d4c3ae;
  --line: rgba(232, 196, 150, 0.22);
  --gold: #e0b15a;
  --gold-dim: #c4923e;
  --red: #b3322a;
  --red-deep: #8e2b28;
  --cream: #fff6e8;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1120px;
  --gutter: clamp(1.1rem, 4.2vw, 2.25rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
picture { display: block; }

a { color: var(--cream); text-decoration-color: var(--gold-dim); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--cream); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.12; margin: 0 0 0.55em; font-weight: 700; }
h2 { font-size: clamp(1.9rem, 5vw, 2.75rem); font-weight: 400; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 400; }
p { margin: 0 0 1em; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap--narrow { width: min(860px, 100% - 2 * var(--gutter)); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.lead { font-size: 1.22rem; line-height: 1.45; max-width: 42ch; }
.note { color: var(--muted); font-size: 0.95rem; }

.skip {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--gold); color: #1a140c; padding: 0.5rem 0.9rem;
  z-index: 100; text-decoration: none; font-weight: 600;
}
.skip:focus { top: 1rem; }

.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.actions--stack { flex-direction: column; align-items: stretch; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.45rem;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  min-height: 48px;
  border-radius: 0;
}
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(247, 240, 228, 0.55); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(255, 255, 255, 0.05); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(42, 26, 20, 0.9);
  border-bottom: 1px solid var(--line);
}
.site-header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 52px; padding-block: 0.25rem;
  flex-wrap: wrap;
}
.brand {
  display: flex; flex-direction: column; text-decoration: none; color: var(--cream);
  line-height: 1.05;
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand__tag {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-toggle {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: none; border: 1px solid var(--line); color: var(--ink);
  padding: 0.45rem 0.75rem; font: inherit; cursor: pointer;
  min-height: 44px;
}
.nav-toggle__bar {
  width: 18px; height: 1px; background: currentColor; position: relative; display: block;
}
.nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: currentColor;
}
.nav-toggle__bar::before { top: -5px; }
.nav-toggle__bar::after { top: 5px; }
.nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.4rem 0 0.7rem;
  border-top: 1px solid var(--line);
}
.nav.is-open { display: flex; }
.nav a {
  text-decoration: none; padding: 0.65rem 0.2rem; font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.nav a:hover { color: var(--gold); }
.nav__cta { color: var(--gold); font-weight: 700; }

@media (min-width: 760px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex; width: auto; flex-direction: row; gap: 1.75rem;
    padding: 0; border: 0;
  }
  .nav a { padding: 0.35rem 0; }
  .brand__name { font-size: 1.25rem; }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #2a1a14 url("../img/hero-1800.jpg") 48% 42% / cover no-repeat;
}
.hero__bg, .hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 32%;
  z-index: -2;
}
@media (min-width: 760px) {
  .hero__bg img { object-position: 48% 42%; }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(
      to top,
      rgba(42, 26, 20, 0.88) 0%,
      rgba(42, 26, 20, 0.42) 22%,
      rgba(42, 26, 20, 0.08) 48%,
      rgba(42, 26, 20, 0.02) 100%
    );
}
.hero .eyebrow,
.hero__sub,
.hero__lead { text-shadow: 0 1px 16px rgba(0, 0, 0, 0.65); }
.hero__content { padding-block: 4.5rem 2.75rem; }
.hero h1 {
  font-size: clamp(3rem, 11vw, 6.1rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}
.hero__tag {
  display: block;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-weight: 400; font-style: italic;
  color: var(--cream);
  letter-spacing: 0;
  margin-top: 0.55rem;
}
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3.4vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.hero__lead {
  max-width: 32ch;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

@media (min-width: 760px) {
  .hero { min-height: 100vh; }
  .hero__content { padding-block: 6rem 4.25rem; }
}

.teaser { padding-block: 2.75rem 3.75rem; background: var(--bg); }
.teaser__title {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em;
  font-family: var(--sans); font-weight: 600; color: var(--gold);
  margin-bottom: 1rem;
}
.video {
  position: relative; aspect-ratio: 16 / 9;
  background: #000; overflow: hidden;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__play {
  position: absolute; inset: 0; width: 100%; height: 100%;
  padding: 0; border: 0; background: #000; cursor: pointer;
  display: grid; place-items: center;
}
.video__play picture, .video__play img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.9;
}
.video__btn {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
  padding-left: 5px;
}
.video__play:hover .video__btn { background: var(--red-deep); }
.video__meta { color: var(--muted); font-size: 0.92rem; margin: 0.85rem 0 0; }

.section { padding-block: 3.75rem; border-top: 1px solid var(--line); }
.section--alt { background: var(--bg-2); }
@media (min-width: 760px) { .section { padding-block: 5.25rem; } }

.spectacle { display: grid; gap: 2.25rem; align-items: center; }
.spectacle__text p:last-child { margin-bottom: 0; }
.spectacle__marie { margin: 0; justify-self: center; max-width: 360px; width: 68%; }
.spectacle__marie img { width: 100%; }
figcaption {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.55rem;
}
@media (min-width: 900px) {
  .spectacle { grid-template-columns: 1.45fr 0.9fr; gap: 4rem; }
  .spectacle__marie { width: 100%; }
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
  margin: 3rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}
.facts__item { background: none; padding: 0; }
.facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.facts dd {
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
}
.facts dd small {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 0.35rem;
}
@media (min-width: 760px) {
  .facts { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.gallery { display: grid; gap: 0.65rem; margin-top: 2.75rem; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; } }

.tricolore {
  height: 3px;
  background: linear-gradient(to right, #009246 0 33.34%, #f4f4f4 33.34% 66.66%, #ce2b37 66.66%);
}

.troupe__photo { margin: 0 0 2.5rem; }
.troupe__photo img { width: 100%; }

.cast {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.cast__item figure { margin: 0; }
.cast__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
}
.cast__item figcaption {
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.7rem;
}
.cast__item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
}
.cast .role {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.3rem 0 0.35rem;
  font-weight: 600;
}
.cast__item figcaption span:last-child {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}
.cast + .note { margin-top: 1.5rem; }
@media (min-width: 600px) {
  .cast { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.25rem; }
}
@media (min-width: 1000px) {
  .cast { grid-template-columns: repeat(4, 1fr); }
}

.booking-form { display: grid; gap: 0.85rem; margin-top: 1.25rem; }
.booking-form label {
  display: grid; gap: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-form input,
.booking-form textarea,
.booking-form select {
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  min-height: 46px;
}
.booking-form textarea { min-height: 8rem; resize: vertical; }
.booking-form button { cursor: pointer; font-family: inherit; }
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.form-status {
  padding: 0.75rem 0;
  color: var(--gold);
}
.form-status.is-error { color: #f0b4ae; }

.booking { display: grid; gap: 2.5rem; margin-top: 2.25rem; }
.card {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.card h3 { margin-bottom: 0.9rem; }
.contact__name { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.15; }
.contact__name span {
  display: block;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.3rem;
}
.contact__line { font-size: 1.12rem; margin-bottom: 0.3rem; }
.contact .actions { margin-top: 1.4rem; }

.rider table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.rider th, .rider td {
  text-align: left; vertical-align: top;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}
.rider th { width: 34%; color: var(--muted); font-weight: 600; padding-right: 0.75rem; }
.rider tr:last-child th, .rider tr:last-child td { border-bottom: 0; }
.rider .note { margin: 1rem 0 0; }

@media (min-width: 860px) {
  .booking {
    grid-template-columns: 0.9fr 1.3fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.plateau { margin: 2.5rem 0 0; }
.plateau img { width: 100%; }

.dates { margin-top: 3.25rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.dates__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.date {
  border: 0;
  border-top: 2px solid var(--gold);
  border-radius: 0;
  padding: 1rem 0 0.2rem;
  background: none;
}
.date p { margin: 0.2rem 0 0; }
.date__when { display: block; font-family: var(--serif); font-size: 1.3rem; }
.date__where { font-size: 1.08rem; }
.date__price { color: var(--cream); }
.date__resa { color: var(--muted); font-size: 0.95rem; }
@media (min-width: 760px) {
  .date { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 0.5rem 1.25rem; align-items: baseline; }
  .date__resa { grid-column: auto; text-align: right; }
}

.site-footer { border-top: 1px solid var(--line); background: var(--bg); padding-block: 2.4rem 1.8rem; }
.site-footer__in { display: grid; gap: 1.5rem; }
.site-footer__brand { display: flex; align-items: center; gap: 1rem; }
.site-footer__mark { width: 44px; height: auto; flex-shrink: 0; opacity: 0.9; }
.site-footer__brand p { margin: 0 0 0.25rem; }
.social { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.social a { display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none; color: var(--ink); min-height: 44px; }
.social a:hover { color: var(--gold); }
.site-footer__legal { margin-top: 1.75rem; padding-top: 1.15rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.88rem; }
.site-footer__legal p { margin-bottom: 0.5rem; }
.mentions summary { cursor: pointer; color: var(--cream); font-weight: 600; padding: 0.4rem 0; }
.mentions__body { margin-top: 0.5rem; max-width: 80ch; }
@media (min-width: 760px) {
  .site-footer__in { grid-template-columns: 1fr auto; align-items: center; }
}


.rider-fold summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
  padding: 0.2rem 0 0.8rem;
  list-style: none;
}
.rider-fold summary::-webkit-details-marker { display: none; }
.rider-fold summary span {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}
.rider-fold[open] summary { margin-bottom: 0.4rem; }


.booking-visual { margin: 0 0 0.65rem; }
.booking-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
