:root {
  --bg: #fbfbfc;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;

  --saffron: #f59e0b;
  --cane: #16a34a;
  --phagwah: #d946ef;
  --gold: #eab308;

  --radius: 18px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 130;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.2), transparent 26%),
    radial-gradient(circle at top right, rgba(22, 163, 74, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(42, 28, 13, 0.96) 0%, rgba(80, 52, 24, 0.95) 52%, rgba(33, 52, 45, 0.96) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 205, 118, 0.22);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.14);
}
.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 138, 0),
    rgba(255, 214, 138, 0.7),
    rgba(255, 214, 138, 0)
  );
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff7ea;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand-lockup {
  display: grid;
  gap: 1px;
}
.brand-name {
  font-size: 18px;
  line-height: 1;
}
.brand-tagline {
  color: rgba(255, 214, 138, 0.92);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}
.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    #fff7ea 0%,
    rgba(245, 158, 11, 0.98) 38%,
    rgba(154, 91, 6, 0.96) 100%
  );
  box-shadow:
    0 0 0 4px rgba(255, 214, 138, 0.12),
    0 6px 18px rgba(245, 158, 11, 0.35);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 214, 138, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ea;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.18);
  cursor: pointer;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease;
}
.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 214, 138, 0.5);
  background: rgba(255, 255, 255, 0.14);
}
.nav-toggle-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-toggle-icon {
  display: grid;
  gap: 4px;
}
.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff7ea;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}
.nav-backdrop {
  display: none;
}
.nav a {
  font-size: 13px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 214, 138, 0.16);
  border-radius: 999px;
  color: rgba(255, 248, 237, 0.92);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease;
}
.nav a.active {
  border-color: transparent;
  background: linear-gradient(
    90deg,
    rgba(245, 158, 11, 0.98),
    rgba(234, 179, 8, 0.95)
  );
  color: #1f2937;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.24);
}

.main {
  padding: 18px 0 28px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero {
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.hero .kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.pill {
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--border);
  background: #f9fafb;
  border-radius: 999px;
  padding: 6px 10px;
  color: #374151;
}
.pill.saffron {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.12);
}
.pill.cane {
  border-color: rgba(22, 163, 74, 0.35);
  background: rgba(22, 163, 74, 0.1);
}
.pill.phagwah {
  border-color: rgba(217, 70, 239, 0.35);
  background: rgba(217, 70, 239, 0.1);
}
.pill.gold {
  border-color: rgba(234, 179, 8, 0.35);
  background: rgba(234, 179, 8, 0.12);
}

h1 {
  margin: 10px 0 6px;
  font-size: 30px;
  letter-spacing: -0.02em;
}
h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.01em;
}
h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 14px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  body.has-mobile-nav .header .container {
    align-items: center;
    flex-direction: row;
  }

  body.has-mobile-nav .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  body.has-mobile-nav .nav {
    position: fixed;
    top: calc(var(--header-height, 88px) + 12px);
    left: 18px;
    right: 18px;
    z-index: 160;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255, 214, 138, 0.18);
    border-radius: 24px;
    background:
      radial-gradient(circle at top left, rgba(245, 158, 11, 0.2), transparent 34%),
      linear-gradient(145deg, rgba(42, 28, 13, 0.98) 0%, rgba(80, 52, 24, 0.97) 58%, rgba(33, 52, 45, 0.98) 100%);
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
    max-height: calc(100dvh - var(--header-height, 88px) - 30px);
    overflow: auto;
  }

  body.has-mobile-nav .nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
  }

  body.has-mobile-nav .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  body.has-mobile-nav .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 120;
    background:
      radial-gradient(circle at top, rgba(245, 158, 11, 0.12), transparent 24%),
      rgba(24, 17, 12, 0.56);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }

  body.has-mobile-nav.nav-open {
    overflow: hidden;
  }

  body.has-mobile-nav.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.has-mobile-nav.nav-open .nav-toggle {
    border-color: rgba(255, 214, 138, 0.52);
    background: rgba(255, 255, 255, 0.16);
    box-shadow:
      0 0 0 3px rgba(245, 158, 11, 0.16),
      0 14px 30px rgba(17, 24, 39, 0.24);
  }

  body.has-mobile-nav.nav-open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.has-mobile-nav.nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  body.has-mobile-nav.nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header .container {
    align-items: flex-start;
    flex-direction: column;
  }

  body.has-mobile-nav .nav {
    justify-content: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 700;
  font-size: 14px;
}
.btn.primary {
  background: #111827;
  color: #fff;
  border-color: #111827;
}
.btn.saffron {
  background: var(--saffron);
  color: #fff;
  border-color: transparent;
}
.btn.ghost {
  background: #fff;
}
.btn:hover {
  filter: brightness(0.98);
}

.placeholder {
  width: 100%;
  background: #fff;
  border: 1px dashed #d1d5db;
  border-radius: 14px;
}
.ph-hero {
  height: 240px;
}
.ph-square {
  aspect-ratio: 4/3;
}
.ph-thumb {
  height: 140px;
}
.ph-tall {
  height: 360px;
}
.ph-video {
  height: 220px;
}

.small {
  font-size: 13px;
  color: var(--muted);
}
.meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.list-card {
  display: block;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.list-card:hover {
  transform: translateY(-1px);
  transition: 150ms;
}

.hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 14px 0;
}

.timeline {
  display: grid;
  gap: 10px;
}
.time-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
@media (max-width: 700px) {
  .time-item {
    grid-template-columns: 1fr;
  }
}

.form {
  max-width: 760px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin: 10px 0 6px;
}
input,
textarea,
select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
}
.footer {
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer .container {
  color: var(--muted);
  font-size: 13px;
  padding: 16px 18px;
}
.footer-rich {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.22), transparent 26%),
    radial-gradient(circle at top right, rgba(22, 163, 74, 0.18), transparent 24%),
    linear-gradient(135deg, #2a1c0d 0%, #503418 52%, #21342d 100%);
  border-top-color: rgba(245, 205, 118, 0.28);
}
.footer-rich .container {
  color: rgba(255, 249, 240, 0.84);
}
.footer-shell {
  display: grid;
  gap: 26px;
  padding-top: 30px;
  padding-bottom: 22px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand-block {
  max-width: 520px;
}
.footer-kicker {
  margin: 0 0 6px;
  color: rgba(255, 214, 138, 0.95);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-brand {
  margin: 0;
  color: #fff7ea;
  font-size: 32px;
}
.footer-description {
  max-width: 48ch;
  margin: 10px 0 0;
  color: rgba(255, 247, 234, 0.82);
}
.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.footer-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 214, 138, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ea;
  font-size: 12px;
  font-weight: 700;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(245, 158, 11, 0.98),
    rgba(234, 179, 8, 0.95)
  );
  color: #1f2937;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.24);
}
.footer-cta:hover {
  transform: translateY(-1px);
  transition: transform 150ms ease;
}
.footer-columns {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.footer-column {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 214, 138, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}
.footer-heading {
  margin: 0;
  color: rgba(255, 214, 138, 0.96);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-link {
  color: rgba(255, 248, 237, 0.92);
  font-weight: 600;
  line-height: 1.45;
}
.footer-link:hover {
  color: #ffffff;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 214, 138, 0.16);
}
.footer-legal p {
  margin: 0;
  color: rgba(255, 247, 234, 0.72);
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal-links a {
  color: rgba(255, 248, 237, 0.9);
  font-weight: 700;
}

.personality-page {
  display: grid;
  gap: 14px;
}
.personality-card {
  height: 100%;
}
.personality-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .footer-brand {
    font-size: 28px;
  }

  .footer-cta {
    width: 100%;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  background: rgba(0, 0, 0, 0.62);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal.open {
  display: flex;
}
.modal .modal-inner {
  max-width: 980px;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 14px;
}
.modal .modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.modal .modal-title {
  font-weight: 900;
}
.modal .modal-close {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 800;
  cursor: pointer;
}
.modal .modal-body {
  margin-top: 10px;
}
.modal .modal-img {
  width: 100%;
  height: 520px;
  border-radius: 14px;
  border: 1px dashed #d1d5db;
  background: #fff;
}

/* Hub sub-navigation */
.subnav {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .subnav {
    grid-template-columns: 1fr;
  }
}

.subnav-item {
  display: block;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 800;
  font-size: 13px;
  color: #111827;
}
.subnav-item:hover {
  transform: translateY(-1px);
  transition: 150ms;
}

/* === Accent couleurs (sans changer la structure) === */

/* Fond légèrement plus chaud */
:root {
  --bg: #fffaf2; /* ivoire très léger */
  --card: #ffffff;
  --border: #eadfce; /* bordure chaude */
  --shadow: 0 2px 10px rgba(17, 24, 39, 0.06);
}

/* Titres */
h2,
h3 {
  color: #1f2937;
}

/* Pastilles plus visibles */
.pill {
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.9);
}
.pill.saffron {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.45);
}
.pill.cane {
  background: rgba(22, 163, 74, 0.14);
  border-color: rgba(22, 163, 74, 0.4);
}
.pill.phagwah {
  background: rgba(217, 70, 239, 0.14);
  border-color: rgba(217, 70, 239, 0.4);
}
.pill.gold {
  background: rgba(234, 179, 8, 0.18);
  border-color: rgba(234, 179, 8, 0.45);
}

/* Navbar : actif + hover plus colorés */
.nav a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 214, 138, 0.16);
  color: rgba(255, 248, 237, 0.92);
}
.nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 214, 138, 0.56);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 3px rgba(245, 158, 11, 0.14),
    0 14px 30px rgba(17, 24, 39, 0.18);
}
.nav a.active {
  background: linear-gradient(
    90deg,
    rgba(245, 158, 11, 0.98),
    rgba(234, 179, 8, 0.95)
  );
  border-color: transparent;
  color: #1f2937;
}

@media (max-width: 640px) {
  .brand-tagline {
    display: none;
  }

  .brand-name {
    font-size: 17px;
  }

  body.has-mobile-nav .nav {
    left: 12px;
    right: 12px;
    top: calc(var(--header-height, 82px) + 10px);
    padding: 14px;
    border-radius: 22px;
  }

  body.has-mobile-nav .nav-toggle {
    gap: 8px;
    padding: 9px 12px;
  }

  body.has-mobile-nav .nav-toggle-label {
    display: none;
  }
}

/* Boutons : primaire safran/or */
.btn.primary {
  background: linear-gradient(
    90deg,
    rgba(245, 158, 11, 0.95),
    rgba(234, 179, 8, 0.92)
  );
  border-color: transparent;
  color: #111827;
}
.btn.primary:hover {
  filter: brightness(1.01);
}

.btn.saffron {
  background: linear-gradient(
    90deg,
    rgba(245, 158, 11, 0.95),
    rgba(234, 179, 8, 0.92)
  );
  border-color: transparent;
  color: #111827;
}

.btn.ghost:hover {
  border-color: rgba(22, 163, 74, 0.55);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

/* Sous-nav : barre d’accent */
.subnav-item {
  position: relative;
  border-color: rgba(234, 223, 206, 0.9);
}
.subnav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, var(--saffron), var(--gold));
  opacity: 0.95;
}
.subnav-item:hover {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow:
    0 0 0 3px rgba(245, 158, 11, 0.1),
    var(--shadow);
}

/* Placeholders : léger fond coloré */
.placeholder {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.06),
    rgba(217, 70, 239, 0.05),
    rgba(22, 163, 74, 0.05)
  );
  border-color: rgba(234, 223, 206, 0.9);
}

/* Footer : séparation plus chaude */
.footer {
  border-top-color: rgba(234, 223, 206, 0.9);
}

/* === Unified Site Theme === */

:root {
  --bg: #f6ebd9;
  --bg-soft: #fff7ea;
  --paper: rgba(255, 251, 244, 0.94);
  --paper-strong: rgba(255, 242, 220, 0.98);
  --paper-deep: rgba(247, 230, 200, 0.94);
  --text: #2e2418;
  --muted: #78674e;
  --border: rgba(138, 93, 34, 0.16);
  --shadow:
    0 22px 42px rgba(79, 52, 24, 0.12),
    0 8px 18px rgba(17, 24, 39, 0.06);
}

body {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(22, 163, 74, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf2e4 0%, #f8efdf 40%, #f6ead6 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.35), transparent 16%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 45%);
  opacity: 0.95;
}

.main {
  position: relative;
  z-index: 1;
  padding: 30px 0 44px;
}

h1,
h2,
h3 {
  font-family:
    "Iowan Old Style",
    "Palatino Linotype",
    "Book Antiqua",
    Georgia,
    serif;
  color: #271a10;
}

h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

strong {
  color: #3b2814;
}

.meta {
  color: #8d5e1b;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.small {
  color: #7d6d56;
}

.card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.95), rgba(255, 244, 224, 0.98)),
    #fff;
  border: 1px solid rgba(138, 93, 34, 0.16);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(245, 158, 11, 0.95),
    rgba(234, 179, 8, 0.72),
    rgba(22, 163, 74, 0.58)
  );
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card .card {
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.96), rgba(252, 239, 214, 0.94)),
    #fff;
  border-color: rgba(138, 93, 34, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 18px 30px rgba(79, 52, 24, 0.08);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(22, 163, 74, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 243, 221, 0.98));
  border-color: rgba(155, 103, 31, 0.18);
}

.hero h1 {
  max-width: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  max-width: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pill {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn {
  border-color: rgba(138, 93, 34, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 228, 0.96)),
    #fff;
  color: #3b2a17;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 24px rgba(79, 52, 24, 0.08);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    filter 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 16px 28px rgba(79, 52, 24, 0.12);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.72);
}

.btn[disabled],
button.btn:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hr {
  border-top-color: rgba(138, 93, 34, 0.14);
}

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

.placeholder {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.72)),
    linear-gradient(180deg, rgba(255, 247, 231, 0.96), rgba(248, 234, 204, 0.96));
  border-color: rgba(185, 138, 70, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 24px rgba(79, 52, 24, 0.06);
}

.placeholder img,
img.placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.ph-video {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(35, 26, 18, 0.92), rgba(62, 41, 19, 0.94));
}

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: inherit;
}

.subnav {
  gap: 12px;
}

.subnav-item {
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 16px 18px 16px 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(255, 241, 214, 0.98));
  border-color: rgba(185, 138, 70, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 14px 24px rgba(79, 52, 24, 0.08);
}

.subnav-item::before {
  width: 7px;
  border-radius: 18px 0 0 18px;
}

.subnav-item::after {
  content: "›";
  margin-left: auto;
  color: rgba(141, 94, 27, 0.72);
  font-size: 20px;
  line-height: 1;
}

.list-card {
  border-color: rgba(185, 138, 70, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(255, 241, 214, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 28px rgba(79, 52, 24, 0.08);
  overflow: hidden;
}

.list-card .placeholder {
  margin-bottom: 12px;
}

.timeline {
  gap: 12px;
}

.time-item {
  border-color: rgba(185, 138, 70, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(255, 240, 214, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 24px rgba(79, 52, 24, 0.07);
}

details {
  margin-top: 14px;
  border: 1px solid rgba(185, 138, 70, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(255, 240, 214, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 16px 26px rgba(79, 52, 24, 0.08);
  overflow: hidden;
}

details[open] {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 20px 30px rgba(79, 52, 24, 0.1);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  color: #2f2215;
  background: rgba(255, 248, 235, 0.7);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #8d5e1b;
  font-size: 18px;
  font-weight: 900;
}

details[open] summary::after {
  content: "−";
}

details > :not(summary) {
  margin-left: 18px;
  margin-right: 18px;
}

details > :last-child {
  margin-bottom: 18px;
}

label {
  color: #5f4724;
}

input,
textarea,
select {
  border-color: rgba(185, 138, 70, 0.22);
  background: rgba(255, 252, 247, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow:
    0 0 0 4px rgba(245, 158, 11, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.modal .modal-inner {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 241, 214, 0.98));
  border: 1px solid rgba(185, 138, 70, 0.18);
  box-shadow: 0 28px 56px rgba(17, 24, 39, 0.2);
}

.modal .modal-close {
  border-color: rgba(185, 138, 70, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #3b2814;
}

.modal .modal-img {
  border-color: rgba(185, 138, 70, 0.18);
}

@media (max-width: 900px) {
  .main {
    padding: 24px 0 38px;
  }

  .card {
    border-radius: 22px;
  }

  .subnav-item {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero p {
    max-width: 72ch;
  }

  .card {
    padding: 14px;
    border-radius: 20px;
  }

  .hero {
    padding: 18px;
  }

  details {
    border-radius: 18px;
  }

  summary {
    padding: 14px 16px;
  }

  details > :not(summary) {
    margin-left: 14px;
    margin-right: 14px;
  }
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 300;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff7ea;
  color: #3b2814;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.18);
  transition: top 140ms ease;
}

.skip-link:focus {
  top: 16px;
}

.media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px dashed rgba(159, 125, 74, 0.6);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 245, 0.98),
    rgba(246, 234, 213, 0.95)
  );
  color: #6f5631;
  text-align: center;
}

.media-placeholder-audio {
  justify-content: start;
  min-height: 56px;
  font-size: 14px;
  font-weight: 600;
}

.progress-note {
  margin: 16px 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-left: 6px solid rgba(245, 158, 11, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(255, 248, 237, 0.96)),
    #fffdf8;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
}

.progress-note-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8d5e1b;
}

.progress-note-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 158, 11, 1), rgba(234, 179, 8, 1));
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.progress-note p {
  margin: 0;
  max-width: 72ch;
  color: #5b4320;
}

.collecte-item {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.collecte-widget {
  flex: 1 1 380px;
  min-width: 280px;
}

.collecte-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.collecte-widget iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  display: block;
}

.project-poster-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.project-poster-media {
  flex: 0 0 60%;
  max-width: 60%;
  width: 100%;
}

.project-poster-text {
  flex: 1 1 280px;
  min-width: 260px;
}

.project-poster-text h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.project-poster-text p {
  margin-top: 0;
}

.prod-video-block {
  margin-top: 18px;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  border-top: 1px solid rgba(60, 40, 20, 0.12);
}

.prod-video-block.reverse {
  flex-direction: row-reverse;
}

.prod-video-text {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 620px;
}

.prod-video-text h2 {
  margin: 0 0 12px;
}

.prod-video-text p {
  margin: 0 0 14px;
}

.prod-video-text p:last-child {
  margin-bottom: 0;
}

.prod-video-media {
  flex: 0 1 300px;
  width: 100%;
  max-width: 300px;
}

.prod-video-media video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.not-found-shell {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.not-found-shell p {
  max-width: 60ch;
}

@media (max-width: 768px) {
  .project-poster-block {
    flex-direction: column;
  }

  .project-poster-text {
    order: 1;
  }

  .project-poster-media {
    order: 2;
    max-width: 100%;
    flex-basis: 100%;
  }

  .prod-video-block,
  .prod-video-block.reverse {
    flex-direction: column;
    align-items: flex-start;
  }

  .prod-video-text {
    order: 1;
    max-width: 100%;
  }

  .prod-video-media {
    order: 2;
    max-width: 300px;
  }
}
