:root {
  --bg: #0b0b0d;
  --bg-soft: #121217;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f1ea;
  --muted: #b8aaa0;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #d9b37c;
  --accent-dark: #8c6338;
  --white: #ffffff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217, 179, 124, 0.16), transparent 38rem),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-padding {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(11, 11, 13, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #fff1d5);
  color: #18100a;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(217, 179, 124, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(247, 241, 234, 0.76);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-admin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(217, 179, 124, 0.38);
  border-radius: 999px;
  background: rgba(217, 179, 124, 0.08);
  color: rgba(247, 241, 234, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-admin:hover {
  transform: translateY(-2px);
  background: rgba(217, 179, 124, 0.16);
  border-color: rgba(217, 179, 124, 0.7);
  color: var(--text);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: var(--text);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h1 {
  max-width: 790px;
  font-size: clamp(3.7rem, 8vw, 7.8rem);
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  margin-bottom: 22px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-text,
.section-heading p,
.large-text,
.about-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #fff0ce);
  color: #15100b;
  box-shadow: 0 14px 42px rgba(217, 179, 124, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: var(--line);
}

.btn-light {
  background: var(--white);
  color: #121212;
}

.full-btn {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 620px;
}

.hero-stats div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.hero-card-main {
  position: absolute;
  inset: 0 6% 0 10%;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card-main::after,
.talent-card::after,
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.54));
  pointer-events: none;
}

.hero-card-main img {
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  width: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(17, 17, 21, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.floating-card strong {
  font-size: 1.08rem;
}

.card-top {
  top: 9%;
  left: 0;
}

.card-bottom {
  right: 0;
  bottom: 13%;
}

.logo-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.logo-row {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0;
  color: rgba(247, 241, 234, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.78rem;
  overflow-x: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.filter-btn {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #15100b;
  transform: translateY(-2px);
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.talent-card {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.talent-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 179, 124, 0.5);
}

.talent-card.hidden {
  display: none;
}

.talent-card img {
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.talent-info {
  position: absolute;
  z-index: 2;
  inset: auto 14px 14px 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.talent-info h3 {
  margin-bottom: 4px;
}

.talent-info span {
  color: var(--muted);
  font-size: 0.92rem;
}

.muted-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border-block: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 34px;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: transform 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--card-strong);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 50px;
  background: rgba(217, 179, 124, 0.14);
  color: var(--accent);
  font-weight: 800;
}

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

.split-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #15100b;
  font-size: 0.8rem;
  font-weight: 900;
}


.job-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.job-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.job-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 1rem;
}

.job-card span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.casting-form,
.contact-form {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: rgba(247, 241, 234, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  outline: none;
  padding: 15px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select option {
  color: #111111;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(217, 179, 124, 0.85);
  box-shadow: 0 0 0 4px rgba(217, 179, 124, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--accent);
  font-weight: 700;
}

.about-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-image img {
  height: 650px;
  object-fit: cover;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.about-points div {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.about-points strong {
  color: var(--accent);
}

.booking-banner {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(217, 179, 124, 0.95), rgba(255, 239, 206, 0.94)),
    url("https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #15100b;
}

.booking-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.booking-content h2 {
  max-width: 670px;
  margin-bottom: 12px;
}

.booking-content p {
  margin-bottom: 0;
  max-width: 620px;
  color: rgba(21, 16, 11, 0.75);
  font-weight: 600;
}

.contact-grid {
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-cards a,
.contact-cards span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: #070709;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  color: var(--muted);
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.copyright {
  text-align: right;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.active {
  display: grid;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: calc(100vh - 40px);
  overflow: hidden auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #121217;
  box-shadow: var(--shadow);
}

.modal-panel img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.modal-content {
  padding: 42px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  z-index: 3;
}

dl {
  display: grid;
  gap: 16px;
  margin: 28px 0 34px;
}

dl div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 4px;
}

dd {
  margin: 0;
  font-weight: 800;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 179, 124, 0.11), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-links.active {
    position: fixed;
    inset: 78px 20px auto 20px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(17, 17, 21, 0.96);
    backdrop-filter: blur(18px);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .nav-links.active a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .split-grid,
  .about-grid,
  .contact-grid,
  .booking-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .booking-content {
    display: grid;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .container,
  .navbar {
    width: min(100% - 28px, var(--container));
  }

  .section-padding {
    padding: 76px 0;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.7rem);
  }

  .hero-stats,
  .talent-grid,
  .service-grid,
  .two-columns,
  .modal-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-card-main {
    inset: 0;
    border-radius: 30px;
  }

  .floating-card {
    width: 160px;
  }

  .card-top {
    top: 18px;
    left: 16px;
  }

  .card-bottom {
    right: 16px;
    bottom: 18px;
  }

  .talent-card,
  .talent-card img {
    min-height: 420px;
  }

  .nav-admin {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.76rem;
  }

  .casting-form,
  .contact-form,
  .service-card,
  .modal-content {
    padding: 24px;
  }

  .about-image img,
  .modal-panel img {
    min-height: 360px;
    height: 420px;
  }

  .logo-row {
    justify-content: flex-start;
  }
}

/* Espace administrateur */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: none;
  place-items: center;
  padding: 20px;
}

.admin-modal.active {
  display: grid;
}

.admin-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(12px);
}

.admin-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: calc(100vh - 40px);
  overflow: hidden auto;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #111116;
  box-shadow: var(--shadow);
}

.admin-login,
.admin-dashboard {
  padding: 42px;
}

.admin-login {
  max-width: 540px;
}

.admin-help {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.admin-login-form {
  display: grid;
  gap: 14px;
}

.admin-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 30px;
}

.admin-dashboard-head h2 {
  margin-bottom: 12px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-small-btn {
  min-height: 42px;
  padding: 0 15px;
  font-size: 0.86rem;
}

.admin-small-btn.danger {
  border-color: rgba(255, 110, 110, 0.42);
  color: #ffb0b0;
}

.admin-list {
  display: grid;
  gap: 16px;
}

.admin-empty {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.application-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.application-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.application-head h3 {
  margin: 8px 0 8px;
  font-size: 1.2rem;
}

.application-head p,
.application-message,
.application-meta span {
  color: var(--muted);
  line-height: 1.7;
}

.application-job {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(217, 179, 124, 0.14);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.application-meta {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 10px;
  min-width: 155px;
  text-align: right;
}

.delete-application {
  border: 1px solid rgba(255, 110, 110, 0.34);
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 110, 110, 0.08);
  color: #ffc2c2;
  font-weight: 800;
  font-size: 0.8rem;
}

.application-message {
  margin-bottom: 0;
  white-space: pre-wrap;
}

button:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}

@media (max-width: 760px) {
  .admin-login,
  .admin-dashboard {
    padding: 28px;
  }

  .admin-dashboard-head,
  .application-head {
    display: grid;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .application-meta {
    justify-items: start;
    text-align: left;
  }
}
