/* =========================================================
   Le Grand Large — Compagnie de théâtre
   Feuille de styles principale
   ========================================================= */

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* Palette */
  --c-ink:        #0d1117;          /* fond profond */
  --c-ink-soft:   #151c24;
  --c-paper:      #f5f1ea;          /* blanc cassé chaud */
  --c-paper-soft: #ebe5da;
  --c-line:       #2a323d;
  --c-muted:      #8a93a0;
  --c-accent:     #4fb1c9;          /* cyan/mer */
  --c-accent-2:   #b97cd6;          /* violet brume */
  --c-accent-3:   #f3c969;          /* lumière chaude */
  --c-gold:       #d9b370;

  /* Typographies */
  --ff-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --ff-script:  "Caveat", "Brush Script MT", cursive;
  --ff-body:    "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Échelles */
  --radius: 4px;
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4rem, 8vw, 7rem);

  /* Transitions */
  --t-fast: 180ms ease;
  --t-mid: 320ms ease;
}

body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-paper);
  background: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-accent); }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--c-accent-2); color: var(--c-ink); }

/* ---------- Typographies ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }

.script {
  font-family: var(--ff-script);
  font-weight: 400;
  color: var(--c-accent-3);
}

.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: #d6cfc1;
  max-width: 60ch;
}

p { color: #cfc8ba; max-width: 70ch; }
p + p { margin-top: 1rem; }

blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--c-paper);
  border-left: 2px solid var(--c-accent);
  padding: 0.5rem 0 0.5rem 1.5rem;
  max-width: 50ch;
}
blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide { max-width: 1480px; }

.section { padding: var(--section-pad) 0; }
.section--paper { background: var(--c-paper); color: var(--c-ink); }
.section--paper p { color: #4a4f56; }
.section--paper h1, .section--paper h2, .section--paper h3 { color: var(--c-ink); }
.section--paper blockquote { color: var(--c-ink); border-left-color: var(--c-ink); }
.section--paper blockquote cite { color: #6b6f76; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(13, 17, 23, 0);
  transition: background var(--t-mid), padding var(--t-mid), backdrop-filter var(--t-mid);
}
.site-header.is-scrolled {
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.nav__logo img {
  height: 75px;
  width: auto;
  transition: height var(--t-mid);
}
.site-header.is-scrolled .nav__logo img { height: 60px; }
.nav__logo span { display: none; }

.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__list a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  color: var(--c-paper);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-mid);
}
.nav__list a:hover::after,
.nav__list a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__list a.is-active { color: var(--c-accent); }

.nav__contact {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__contact:hover { background: var(--c-accent); color: var(--c-ink); }

/* Burger */
.nav__burger {
  display: none;
  width: 36px; height: 36px;
  position: relative;
  z-index: 101;
}
.nav__burger span {
  display: block;
  position: absolute;
  left: 4px; right: 4px;
  height: 2px;
  background: var(--c-paper);
  transition: transform var(--t-mid), opacity var(--t-fast), top var(--t-mid);
}
.nav__burger span:nth-child(1) { top: 11px; }
.nav__burger span:nth-child(2) { top: 17px; }
.nav__burger span:nth-child(3) { top: 23px; }
.nav.is-open .nav__burger span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__burger { display: block; }
  .nav__list {
    position: fixed;
    inset: 0;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--t-mid);
  }
  .nav__list a { font-size: 1.4rem; }
  .nav.is-open .nav__list { transform: translateX(0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(79,177,201,0.25), transparent 60%),
    linear-gradient(180deg, rgba(13,17,23,0.55) 0%, rgba(13,17,23,0.85) 100%);
  z-index: -1;
}
.hero__content { padding-top: 6rem; max-width: 880px; }
.hero__title {
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1;
}
.hero__title em {
  font-family: var(--ff-script);
  color: var(--c-accent-3);
  font-style: normal;
  font-size: 1.05em;
  display: inline-block;
  transform: translateY(0.05em);
}
.hero__subtitle {
  margin-top: 1.5rem;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: #d6cfc1;
  max-width: 60ch;
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Mini hero (pages internes) */
.page-hero {
  position: relative;
  padding-top: clamp(8rem, 16vw, 12rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,0.7) 0%, rgba(13,17,23,0.95) 100%);
  z-index: -1;
}
.page-hero__title { max-width: 18ch; }
.page-hero__intro { margin-top: 1.5rem; max-width: 65ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--c-accent);
  color: var(--c-ink);
}
.btn--primary:hover { background: var(--c-accent-3); color: var(--c-ink); }
.btn--ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--c-paper);
}
.btn--ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }
.btn--dark { background: var(--c-ink); color: var(--c-paper); }
.btn--dark:hover { background: var(--c-accent); color: var(--c-ink); }
.btn .arrow { transition: transform var(--t-fast); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Sections génériques ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .split--reverse > :first-child { order: 2; }
}

/* ---------- Cards spectacles (homepage / liste) ---------- */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.show-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-ink-soft);
  isolation: isolate;
  aspect-ratio: 4 / 5;
}
.show-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.show-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.show-card:hover .show-card__media img { transform: scale(1.06); }
.show-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,0.1) 30%, rgba(13,17,23,0.95) 100%);
  z-index: 1;
}
.show-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  z-index: 2;
}
.show-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent-3);
  margin-bottom: 0.5rem;
}
.show-card__title {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 0.5rem;
}
.show-card__sub {
  font-size: 0.95rem;
  color: #cfc8ba;
}
.show-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
}

/* Show card large (page liste) */
.shows-list {
  display: grid;
  gap: 4rem;
}
.show-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .show-row { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .show-row:nth-child(even) > :first-child { order: 2; }
}
.show-row__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}
.show-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(0.2,0.7,0.2,1); }
.show-row:hover .show-row__media img { transform: scale(1.04); }
.show-row__title { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 0.4rem; }
.show-row__sub { font-style: italic; color: var(--c-accent); margin-bottom: 1.2rem; }

/* ---------- Galerie spectacle ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4/3;
  background: var(--c-ink-soft);
  border-radius: var(--radius);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2,0.7,0.2,1), opacity var(--t-fast);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--tall { grid-row: span 2; aspect-ratio: 4/6; }
@media (max-width: 600px) {
  .gallery__item--tall { grid-row: auto; aspect-ratio: 4/3; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 16, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: var(--c-paper);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  font-size: 1.4rem;
  transition: background var(--t-fast);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--c-accent); color: var(--c-ink); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Distribution / fiche technique ---------- */
.show-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--c-ink-soft);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
}
@media (min-width: 720px) {
  .show-meta { grid-template-columns: repeat(2, 1fr); }
}
.show-meta__group h4 {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}
.show-meta__group p, .show-meta__group ul {
  color: var(--c-paper);
  font-size: 0.98rem;
  list-style: none;
}

/* Equipe spectacle */
.team-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--c-ink-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team-card__photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #1c2530, #0f141b);
  position: relative;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
}
.team-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.02) 0 12px,
      transparent 12px 24px),
    linear-gradient(135deg, #1c2530, #0f141b);
}
.team-card__photo--placeholder::before {
  content: "";
  display: block;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  position: absolute;
  top: calc(50% - 36px);
  left: calc(50% - 30px);
}
.team-card__photo--placeholder span { position: relative; z-index: 1; margin-top: 60px; }
.team-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.team-card__name { font-size: 1.2rem; margin-bottom: 0.1rem; }
.team-card__role {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
  display: block;
}
.team-card__bio { font-size: 0.92rem; color: #b9b3a6; }

/* Equipe page (large cards) */
.team-grid-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.team-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 800px) {
  .team-large { grid-template-columns: 380px 1fr; gap: 3rem; }
}
.team-large__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #14191f;
}
.team-large__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-large__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted); text-align: center; padding: 2rem;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.025) 0 16px,
      transparent 16px 32px),
    linear-gradient(135deg, #1c2530, #0f141b);
}
.team-large__name { margin-bottom: 0.2rem; }
.team-large__role {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.78rem; color: var(--c-accent);
  margin-bottom: 1.5rem; display: block;
}
.team-large__bio p { color: #cfc8ba; font-size: 1rem; }

/* ---------- Vidéo embed ---------- */
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--c-muted);
  font-size: 0.95rem;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.025) 0 16px,
      transparent 16px 32px),
    linear-gradient(135deg, #14191f, #0a0d12);
}

/* ---------- Espace pro ---------- */
.dossier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.dossier-card {
  display: flex;
  flex-direction: column;
  background: var(--c-ink-soft);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-mid), border-color var(--t-mid);
}
.dossier-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
}
.dossier-card__cover {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0f141b;
}
.dossier-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.dossier-card__body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.dossier-card__title { font-size: 1.4rem; margin-bottom: 0.4rem; }
.dossier-card__sub { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 1.4rem; flex: 1; }
.dossier-card__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.dossier-card__actions .btn { padding: 0.6rem 1.1rem; font-size: 0.78rem; }

/* ---------- Contact ---------- */
.contact-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 760px) {
  .contact-block { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-card h3 { margin-bottom: 0.6rem; }
.contact-card a { color: var(--c-accent); }
.contact-card a:hover { color: var(--c-accent-3); }
.contact-card p { font-size: 0.95rem; }

/* ---------- Contact form ---------- */
.contact-form {
  display: grid;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}
.contact-form label { display: block; }
.contact-form label > span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
  color: var(--c-accent);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-line);
  border-radius: 4px;
  color: var(--c-paper);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: rgba(255, 255, 255, 0.07);
}
.contact-form textarea { resize: vertical; min-height: 160px; line-height: 1.55; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.form-note {
  font-size: 0.82rem;
  color: var(--c-muted);
  margin: 0;
}

.section--paper .contact-form input,
.section--paper .contact-form textarea {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--c-ink);
}
.section--paper .contact-form input:focus,
.section--paper .contact-form textarea:focus {
  border-color: var(--c-ink);
  background: #fff;
}
.section--paper .contact-form label > span { color: var(--c-ink); }
.section--paper .form-note { color: #6b6f76; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0d12;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--c-line);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 760px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer__brand img { height: 110px; width: auto; margin-bottom: 1rem; }
.site-footer__brand p { font-size: 0.9rem; color: var(--c-muted); max-width: 36ch; }
.site-footer h4 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer ul { list-style: none; display: grid; gap: 0.6rem; }
.site-footer ul a { color: #b9b3a6; font-size: 0.95rem; }
.site-footer ul a:hover { color: var(--c-accent); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--c-muted);
}

/* ---------- Animations & utilitaires ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.divider {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--c-accent);
  margin: 1.5rem 0 2rem;
}
.section--paper .divider { background: var(--c-ink); }

/* Quote big sur sections */
.quote-big {
  text-align: center;
  max-width: 38ch;
  margin: 0 auto;
}
.quote-big blockquote { border: none; padding: 0; margin: 0 auto; }

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