:root {
  --cream: #f5eee5;
  --cream-2: #eadccd;
  --sand: #d4bea6;
  --taupe: #9b7a5f;
  --brown: #2f1b10;
  --black: #24160f;
  --white: #fff8ef;
  --line: rgba(47, 27, 16, 0.13);
  --shadow: 0 28px 80px rgba(47, 27, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 190, 166, 0.34), transparent 36%),
    linear-gradient(180deg, #f5eee5 0%, #f1e7dc 48%, #f6efe8 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), 1240px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(47, 27, 16, 0.12);
  border-radius: 999px;
  background: rgba(246, 239, 232, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(47, 27, 16, 0.08);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--black);
  font-size: 22px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand span {
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(47, 27, 16, 0.72);
  font-size: 13px;
  font-weight: 650;
}

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

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--brown);
  border-color: var(--brown);
  box-shadow: 0 16px 38px rgba(47, 27, 16, 0.18);
}

.header-cta {
  padding: 10px 17px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(47, 27, 16, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--brown);
  background: rgba(255, 248, 239, 0.55);
  font-weight: 700;
}

.hero {
  min-height: 100svh;
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 132px 0 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-kicker,
.section-label {
  margin-bottom: 18px;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(52px, 5.8vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.074em;
}

.hero-text {
  max-width: 740px;
  margin: 26px auto 0;
  color: rgba(47, 27, 16, 0.68);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

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

.btn-secondary {
  color: var(--brown);
  background: rgba(255, 248, 239, 0.44);
  border-color: rgba(47, 27, 16, 0.28);
}

.btn-secondary:hover {
  color: var(--white);
  background: var(--brown);
  border-color: var(--brown);
}

.section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 112px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 118px;
}

.mission {
  border-top: 0;
}

.two-columns,
.section-heading,
.reference-heading,
.agenda-heading {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 78px;
  align-items: start;
}

h1,
h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.text-block p,
.profil-content p,
.section-heading p,
.reference-heading p,
.agenda-heading p,
.contact-intro p,
.legal-content p,
.legal-content li {
  color: rgba(47, 27, 16, 0.68);
  font-size: 18px;
  line-height: 1.72;
}

.profil {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 88px;
  align-items: center;
}

.portrait {
  position: relative;
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border-radius: 42px;
  background: var(--sand);
  opacity: 0.38;
  z-index: -1;
}

.portrait-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.lead {
  color: var(--brown) !important;
  font-size: 21px !important;
  line-height: 1.5 !important;
}

.profil-content h3 {
  margin-top: 32px;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.profil-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.profil-list li {
  padding: 14px 16px;
  border: 1px solid rgba(47, 27, 16, 0.12);
  border-radius: 22px;
  color: rgba(47, 27, 16, 0.76);
  background: rgba(255, 248, 239, 0.52);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.card,
.agenda-card,
.trust-block,
.contact-form {
  border: 1px solid rgba(47, 27, 16, 0.12);
  background: rgba(255, 248, 239, 0.48);
  box-shadow: 0 20px 60px rgba(47, 27, 16, 0.06);
}

.card {
  min-height: 360px;
  padding: 34px;
  border-radius: 34px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 60px;
  color: var(--taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.card h3,
.trust-block h3,
.agenda-card h3,
.contact-copy h3 {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.card p,
.agenda-card p,
.trust-tags span,
.contact-copy p {
  color: rgba(47, 27, 16, 0.66);
  font-size: 16px;
  line-height: 1.62;
}

.reference-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
  margin-top: 46px;
}

.reference-card {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 42px;
  background: rgba(255, 248, 239, 0.52);
  box-shadow: 0 24px 70px rgba(47, 27, 16, 0.10);
}

.reference-card-wide {
  min-height: 620px;
}

.reference-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.reference-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 248, 239, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 20, 18, 0.30);
  backdrop-filter: blur(14px);
  font-size: 13px;
}

.reference-card figcaption span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.trust-block {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  margin-top: 20px;
  padding: 34px;
  border-radius: 34px;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-tags span {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(47, 27, 16, 0.06);
}

.agenda-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  margin-top: 46px;
}

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

.agenda-card {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 32px;
  padding: 30px;
  border-radius: 34px;
}

.agenda-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, rgba(47, 27, 16, 0.95), rgba(76, 48, 31, 0.92));
}

.agenda-date {
  display: grid;
  gap: 4px;
  align-content: start;
}

.agenda-date span,
.agenda-type {
  margin: 0 0 12px;
  color: var(--taupe);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.agenda-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.agenda-card.featured .agenda-date span,
.agenda-card.featured .agenda-type,
.agenda-card.featured p {
  color: rgba(255, 248, 239, 0.72);
}

.agenda-visuals {
  display: grid;
  gap: 18px;
}

.agenda-visuals img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 20px 60px rgba(47, 27, 16, 0.08);
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 120px;
}

.contact-copy {
  margin: 28px 0;
}

.contact-copy h3 {
  margin-bottom: 10px;
}

.contact-form {
  padding: 36px;
  border-radius: 36px;
}

label {
  display: block;
  margin-bottom: 20px;
  color: rgba(47, 27, 16, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 10px;
  padding: 17px 18px;
  border: 1px solid rgba(47, 27, 16, 0.16);
  border-radius: 18px;
  outline: none;
  color: var(--black);
  background: rgba(246, 239, 232, 0.78);
  font: inherit;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(47, 27, 16, 0.42);
  background: rgba(255, 248, 239, 0.92);
}

.contact-form .btn {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 16px 0 0;
  color: rgba(47, 27, 16, 0.48);
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  padding: 42px 24px;
  color: rgba(255, 248, 239, 0.75);
  background: var(--brown);
  text-align: center;
}

.footer p {
  max-width: 920px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
  font-size: 13px;
}

.footer-links a {
  border-bottom: 1px solid currentColor;
}

.footer-small {
  margin-top: 16px !important;
  opacity: 0.68;
}

.legal-page {
  padding-top: 120px;
}

.legal-content {
  max-width: 980px;
}

.legal-content h1 {
  margin-bottom: 52px;
}

.legal-content article {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-content article h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
}

.legal-content ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 18px;
    border: 1px solid rgba(47, 27, 16, 0.12);
    border-radius: 28px;
    background: rgba(246, 239, 232, 0.96);
    box-shadow: 0 20px 70px rgba(47, 27, 16, 0.12);
  }

  body.menu-open .nav {
    display: grid;
    gap: 14px;
  }

  .nav a {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 248, 239, 0.52);
  }
}

@media (max-width: 900px) {
  .two-columns,
  .section-heading,
  .reference-heading,
  .agenda-heading,
  .profil,
  .contact,
  .trust-block,
  .agenda-layout,
  .reference-grid,
  .cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.5vw, 64px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .reference-card,
  .reference-card-wide {
    min-height: auto;
  }

  .reference-card img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .agenda-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .agenda-date {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
}

@media (max-width: 520px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 22px);
    padding: 10px 12px;
  }

  .brand {
    font-size: 18px;
  }

  .menu-toggle {
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero,
  .section {
    width: calc(100% - 28px);
  }

  .hero {
    padding-top: 112px;
  }

  .hero-kicker,
  .section-label {
    font-size: 10px;
    line-height: 1.55;
  }

  .hero h1 {
    font-size: clamp(38px, 11.8vw, 54px);
    line-height: 0.98;
  }

  .hero-text,
  .text-block p,
  .profil-content p,
  .section-heading p,
  .reference-heading p,
  .agenda-heading p,
  .contact-intro p,
  .legal-content p,
  .legal-content li {
    font-size: 15.8px;
    line-height: 1.68;
  }

  h1,
  h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
  }

  .card,
  .contact-form,
  .trust-block,
  .agenda-card {
    padding: 24px;
    border-radius: 28px;
  }

  .portrait::before {
    inset: 14px -10px -14px 10px;
    border-radius: 30px;
  }

  .portrait-img,
  .reference-card,
  .agenda-visuals img {
    border-radius: 30px;
  }

  .reference-card figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    border-radius: 22px;
    font-size: 12.5px;
  }

  .footer {
    padding: 34px 18px;
  }
}

/* === NAVBAR PREMIUM COMPACTE === */

.site-header {
  top: 18px !important;
  width: min(calc(100% - 72px), 1160px) !important;
  min-height: 58px !important;
  padding: 7px 9px 7px 18px !important;
  gap: 14px !important;
  border: 1px solid rgba(47, 27, 16, 0.10) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.78), rgba(241, 231, 220, 0.72)) !important;
  backdrop-filter: blur(22px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(120%) !important;
  box-shadow:
    0 18px 52px rgba(47, 27, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.48) !important;
}

.brand {
  flex: 0 0 auto !important;
  font-size: 21px !important;
  line-height: 1 !important;
  letter-spacing: -0.035em !important;
  color: #24160f !important;
}

.brand span {
  letter-spacing: -0.01em !important;
}

.nav {
  flex: 1 1 auto !important;
  justify-content: center !important;
  gap: 3px !important;
  padding: 4px !important;
  border: 1px solid rgba(47, 27, 16, 0.07) !important;
  border-radius: 999px !important;
  background: rgba(255, 248, 239, 0.32) !important;
  color: rgba(47, 27, 16, 0.62) !important;
  font-size: 12.5px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
}

.nav a {
  padding: 10px 11px !important;
  border-radius: 999px !important;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease !important;
}

.nav a:hover {
  color: #24160f !important;
  background: rgba(255, 248, 239, 0.72) !important;
  transform: translateY(-1px) !important;
}

.header-cta {
  flex: 0 0 auto !important;
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  font-size: 12.8px !important;
  font-weight: 750 !important;
  letter-spacing: -0.01em !important;
  color: #fff8ef !important;
  background:
    linear-gradient(135deg, #2f1b10 0%, #3a2114 100%) !important;
  box-shadow:
    0 12px 28px rgba(47, 27, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
}

.header-cta:hover {
  transform: translateY(-1px) !important;
  background:
    linear-gradient(135deg, #3b2417 0%, #2f1b10 100%) !important;
}

@media (max-width: 1220px) {
  .site-header {
    width: min(calc(100% - 36px), 1080px) !important;
  }

  .nav {
    gap: 1px !important;
    font-size: 12px !important;
  }

  .nav a {
    padding: 9px 8px !important;
  }

  .header-cta {
    padding: 0 16px !important;
    font-size: 12.4px !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    width: calc(100% - 28px) !important;
    min-height: 56px !important;
    padding: 8px 10px 8px 16px !important;
  }

  .brand {
    font-size: 20px !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 40px !important;
    padding: 0 15px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(47, 27, 16, 0.12) !important;
    color: #2f1b10 !important;
    background: rgba(255, 248, 239, 0.58) !important;
    font-size: 12.5px !important;
    font-weight: 750 !important;
  }

  .nav {
    top: calc(100% + 9px) !important;
    padding: 10px !important;
    border-radius: 26px !important;
    background: rgba(246, 239, 232, 0.97) !important;
    box-shadow: 0 24px 70px rgba(47, 27, 16, 0.14) !important;
  }

  body.menu-open .nav {
    display: grid !important;
    gap: 6px !important;
  }

  .nav a {
    padding: 13px 15px !important;
    border-radius: 18px !important;
    background: rgba(255, 248, 239, 0.48) !important;
    font-size: 14px !important;
  }
}

@media (max-width: 900px) {
  .header-cta {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 10px !important;
    width: calc(100% - 20px) !important;
    min-height: 52px !important;
    padding: 7px 8px 7px 14px !important;
  }

  .brand {
    font-size: 18px !important;
  }

  .menu-toggle {
    min-height: 38px !important;
    padding: 0 13px !important;
    font-size: 12px !important;
  }
}

/* === PHOTOS FINAL R270 — CADRAGE SIMPLE === */

.portrait {
  width: min(100%, 440px) !important;
  aspect-ratio: 0.62 !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 38px !important;
  background: transparent !important;
  box-shadow: 0 24px 70px rgba(47, 27, 16, 0.13) !important;
}

.portrait::before {
  display: none !important;
}

.portrait-img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: 36% 50% !important;
  border-radius: 38px !important;
  box-shadow: none !important;
}

.reference-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
  margin-top: 42px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.reference-card,
.reference-card-wide,
.reference-group-card,
.reference-conference-card {
  width: 100% !important;
  aspect-ratio: 2200 / 1556 !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: transparent !important;
  box-shadow: 0 18px 54px rgba(47, 27, 16, 0.11) !important;
  overflow: hidden !important;
}

.reference-card img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 28px !important;
  filter: none !important;
}

.reference-card::after,
.reference-card figcaption {
  display: none !important;
}

.trust-block {
  margin-top: 26px !important;
}

@media (max-width: 900px) {
  .profil {
    grid-template-columns: 1fr !important;
  }

  .portrait {
    width: min(100%, 390px) !important;
    aspect-ratio: 0.66 !important;
  }

  .reference-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .reference-card,
  .reference-card-wide,
  .reference-group-card,
  .reference-conference-card {
    aspect-ratio: 2200 / 1556 !important;
    border-radius: 24px !important;
  }

  .reference-card img {
    border-radius: 24px !important;
  }
}

@media (max-width: 520px) {
  .portrait {
    width: 100% !important;
    aspect-ratio: 0.7 !important;
    border-radius: 26px !important;
  }

  .portrait-img {
    object-position: 38% 50% !important;
    border-radius: 26px !important;
  }

  .reference-card,
  .reference-card-wide,
  .reference-group-card,
  .reference-conference-card,
  .reference-card img {
    border-radius: 20px !important;
  }
}

/* === AGENDA DYNAMIQUE + ADMIN === */

.agenda-dynamic {
  margin-top: 46px;
}

.agenda-empty {
  padding: 42px;
  border: 1px solid rgba(47, 27, 16, 0.12);
  border-radius: 34px;
  background: rgba(255, 248, 239, 0.48);
  box-shadow: 0 20px 60px rgba(47, 27, 16, 0.06);
}

.agenda-empty h3 {
  margin-bottom: 12px;
  font-size: 34px;
}

.agenda-empty p {
  color: rgba(47, 27, 16, 0.66);
  font-size: 16px;
  line-height: 1.6;
}

.event-featured-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  padding: 18px;
  border: 1px solid rgba(47, 27, 16, 0.12);
  border-radius: 38px;
  background: rgba(255, 248, 239, 0.48);
  box-shadow: 0 24px 70px rgba(47, 27, 16, 0.08);
}

.event-featured-card img,
.event-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  background: linear-gradient(135deg, #2f1b10, #9b7a5f);
}

.event-image-placeholder {
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.event-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 14px;
}

.event-featured-content h3 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.event-featured-content p {
  color: rgba(47, 27, 16, 0.66);
  font-size: 16px;
  line-height: 1.6;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.event-meta span,
.event-link,
.agenda-line-meta span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(47, 27, 16, 0.06);
  color: rgba(47, 27, 16, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.event-link {
  width: max-content;
  margin-top: 22px;
  color: var(--white);
  background: var(--brown);
}

.agenda-other-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.agenda-line-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(47, 27, 16, 0.10);
  border-radius: 26px;
  background: rgba(255, 248, 239, 0.42);
}

.agenda-line-card h3 {
  font-size: 28px;
}

.agenda-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.event-page {
  padding-top: 130px;
}

.event-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(47, 27, 16, 0.68);
  font-weight: 700;
}

.event-detail-hero {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 60px;
  align-items: end;
}

.event-detail h1 {
  font-size: clamp(46px, 6vw, 86px);
}

.event-detail-intro {
  max-width: 760px;
  color: rgba(47, 27, 16, 0.66);
  font-size: 19px;
  line-height: 1.6;
}

.event-detail-meta {
  display: grid;
  gap: 10px;
}

.event-detail-meta span {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.55);
  color: rgba(47, 27, 16, 0.74);
  font-weight: 700;
}

.event-detail-image {
  width: 100%;
  max-height: 620px;
  margin: 44px 0;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 24px 70px rgba(47, 27, 16, 0.10);
}

.event-detail-content {
  display: grid;
  gap: 28px;
}

.event-detail-content article {
  padding: 32px;
  border: 1px solid rgba(47, 27, 16, 0.10);
  border-radius: 30px;
  background: rgba(255, 248, 239, 0.42);
}

.event-detail-content h2 {
  margin-bottom: 16px;
  font-size: 36px;
}

.event-detail-content p {
  color: rgba(47, 27, 16, 0.68);
  font-size: 17px;
  line-height: 1.72;
}

.event-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hidden {
  display: none !important;
}

.admin-body {
  min-height: 100vh;
}

.admin-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0;
}

.admin-card,
.admin-form,
.admin-list-wrap {
  padding: 34px;
  border: 1px solid rgba(47, 27, 16, 0.12);
  border-radius: 34px;
  background: rgba(255, 248, 239, 0.52);
  box-shadow: 0 24px 70px rgba(47, 27, 16, 0.08);
}

.admin-card {
  max-width: 520px;
  margin: 80px auto;
}

.admin-card h1,
.admin-dashboard h1 {
  font-size: clamp(42px, 5vw, 72px);
}

.admin-topbar,
.admin-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.admin-layout {
  grid-template-columns: 1fr 0.9fr;
  margin-top: 34px;
}

.admin-actions,
.admin-form-actions,
.admin-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-checkbox input {
  width: auto;
  margin: 0;
}

.admin-error {
  color: #8b1e1e;
  font-weight: 700;
}

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

.admin-event {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 248, 239, 0.54);
}

.admin-event img {
  width: 120px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
}

.admin-event h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.admin-event p {
  margin: 0 0 10px;
  color: rgba(47, 27, 16, 0.66);
}

.admin-event button,
.admin-event a {
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--brown);
  background: rgba(47, 27, 16, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 900px) {
  .event-featured-card,
  .event-detail-hero,
  .admin-topbar,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .agenda-line-card {
    grid-template-columns: 1fr;
  }

  .agenda-line-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .admin-page {
    width: calc(100% - 24px);
    padding: 34px 0;
  }

  .admin-card,
  .admin-form,
  .admin-list-wrap {
    padding: 24px;
    border-radius: 28px;
  }

  .admin-two,
  .admin-event {
    grid-template-columns: 1fr;
  }

  .admin-event img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* === EVENT DETAIL V2 PREMIUM === */

.event-page {
  padding-top: 118px !important;
}

.event-detail {
  width: min(1240px, calc(100% - 48px)) !important;
  padding: 48px 0 110px !important;
  border-top: 0 !important;
}

.event-v2-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(47, 27, 16, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.event-v2-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.event-v2-media,
.event-v2-panel {
  border: 1px solid rgba(47, 27, 16, 0.10);
  box-shadow: 0 28px 88px rgba(47, 27, 16, 0.10);
}

.event-v2-media {
  min-height: 620px;
  overflow: hidden;
  border-radius: 44px;
  background: #2f1b10;
}

.event-v2-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center center;
}

.event-v2-placeholder {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 248, 239, 0.16), transparent 34%),
    linear-gradient(135deg, #2f1b10, #7a5538);
}

.event-v2-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 68px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 248, 239, 0.96), transparent 34%),
    linear-gradient(135deg, rgba(255, 248, 239, 0.70), rgba(232, 218, 203, 0.36));
}

.event-v2-panel h1 {
  max-width: 720px;
  font-size: clamp(58px, 6vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.078em;
}

.event-v2-intro {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(47, 27, 16, 0.66);
  font-size: 19px;
  line-height: 1.58;
}

.event-v2-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 34px;
}

.event-v2-meta-item {
  padding: 16px 18px;
  border: 1px solid rgba(47, 27, 16, 0.08);
  border-radius: 22px;
  background: rgba(255, 248, 239, 0.58);
}

.event-v2-meta-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--taupe);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-v2-meta-item strong {
  display: block;
  color: var(--brown);
  font-size: 16px;
  line-height: 1.35;
}

.event-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.event-v2-content {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.event-v2-content article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 30px 34px;
  border: 1px solid rgba(47, 27, 16, 0.10);
  border-radius: 32px;
  background: rgba(255, 248, 239, 0.46);
  box-shadow: 0 18px 54px rgba(47, 27, 16, 0.045);
}

.event-v2-content article > span {
  color: rgba(47, 27, 16, 0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.event-v2-content h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.event-v2-content p {
  max-width: 860px;
  margin: 0;
  color: rgba(47, 27, 16, 0.68);
  font-size: 17px;
  line-height: 1.72;
}

.event-v2-empty {
  padding: 54px;
  border-radius: 38px;
  background: rgba(255, 248, 239, 0.52);
}

@media (max-width: 980px) {
  .event-v2-hero {
    grid-template-columns: 1fr;
  }

  .event-v2-media,
  .event-v2-media img,
  .event-v2-placeholder {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .event-page {
    padding-top: 88px !important;
  }

  .event-detail {
    width: calc(100% - 24px) !important;
    padding-top: 28px !important;
  }

  .event-v2-media,
  .event-v2-panel {
    border-radius: 28px;
  }

  .event-v2-panel {
    padding: 26px;
  }

  .event-v2-panel h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .event-v2-intro,
  .event-v2-content p {
    font-size: 15.8px;
  }

  .event-v2-actions .btn {
    width: 100%;
  }

  .event-v2-content article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
    border-radius: 26px;
  }
}

/* === EVENT DETAIL — CARTES TEXTE CLEAN === */

.event-v2-content-clean {
  display: grid !important;
  gap: 18px !important;
  margin-top: 24px !important;
}

.event-v2-content-clean .event-v2-section-card {
  display: block !important;
  padding: 38px 42px !important;
  border: 1px solid rgba(47, 27, 16, 0.10) !important;
  border-radius: 34px !important;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.62), rgba(232, 218, 203, 0.26)) !important;
  box-shadow:
    0 18px 54px rgba(47, 27, 16, 0.045),
    inset 0 1px 0 rgba(255,255,255,0.46) !important;
}

.event-v2-content-clean .event-v2-description-card {
  padding: 46px 52px !important;
}

.event-v2-content-clean h2 {
  margin: 0 0 14px !important;
  color: #24160f !important;
  font-size: clamp(34px, 3.4vw, 54px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.06em !important;
}

.event-v2-content-clean p {
  max-width: 980px !important;
  margin: 0 !important;
  color: rgba(47, 27, 16, 0.68) !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
}

.event-v2-info-grid {
  display: grid !important;
  grid-template-columns: 1fr 0.75fr !important;
  gap: 18px !important;
}

.event-v2-info-grid .event-v2-section-card {
  min-height: 220px !important;
}

/* sécurité : si un ancien span 01/02/03 traîne encore */
.event-v2-content article > span {
  display: none !important;
}

@media (max-width: 900px) {
  .event-v2-info-grid {
    grid-template-columns: 1fr !important;
  }

  .event-v2-content-clean .event-v2-section-card,
  .event-v2-content-clean .event-v2-description-card {
    padding: 30px !important;
    border-radius: 28px !important;
  }
}

@media (max-width: 520px) {
  .event-v2-content-clean .event-v2-section-card,
  .event-v2-content-clean .event-v2-description-card {
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .event-v2-content-clean h2 {
    font-size: clamp(30px, 10vw, 42px) !important;
  }

  .event-v2-content-clean p {
    font-size: 15.8px !important;
  }
}

/* === LOGO IMAGE NAVBAR ELCA === */

.brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 150px !important;
  height: 38px !important;
  flex: 0 0 150px !important;
  overflow: visible !important;
}

.brand-logo img {
  display: block !important;
  width: auto !important;
  max-width: 150px !important;
  height: 32px !important;
  object-fit: contain !important;
}

@media (max-width: 1120px) {
  .brand-logo {
    width: 132px !important;
    flex-basis: 132px !important;
    height: 36px !important;
  }

  .brand-logo img {
    max-width: 132px !important;
    height: 29px !important;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 118px !important;
    flex-basis: 118px !important;
  }

  .brand-logo img {
    max-width: 118px !important;
    height: 26px !important;
  }
}

/* === LOGO NAV PLUS GROS === */
.brand,
.site-header .brand {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 0 auto !important;
  padding-left: 6px !important;
}

.brand img,
.site-header .brand img,
.brand-logo,
.site-header .brand-logo {
  display: block !important;
  width: auto !important;
  height: 38px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}

/* mobile */
@media (max-width: 900px) {
  .brand img,
  .site-header .brand img,
  .brand-logo,
  .site-header .brand-logo {
    height: 32px !important;
  }
}

@media (max-width: 520px) {
  .brand img,
  .site-header .brand img,
  .brand-logo,
  .site-header .brand-logo {
    height: 28px !important;
  }
}

/* === LOGO NAV VISIBLE / PREMIUM === */
.site-header .brand-logo {
  flex: 0 0 230px !important;
  width: 230px !important;
  height: 46px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-left: 14px !important;
  overflow: visible !important;
}

.site-header .brand-logo img {
  display: block !important;
  width: auto !important;
  height: 42px !important;
  max-width: 220px !important;
  max-height: none !important;
  object-fit: contain !important;
}

@media (max-width: 1120px) {
  .site-header .brand-logo {
    flex-basis: 185px !important;
    width: 185px !important;
    height: 42px !important;
    padding-left: 8px !important;
  }

  .site-header .brand-logo img {
    height: 36px !important;
    max-width: 180px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand-logo {
    flex-basis: 145px !important;
    width: 145px !important;
  }

  .site-header .brand-logo img {
    height: 31px !important;
    max-width: 142px !important;
  }
}

/* === LOGO NAV FINAL — TAILLE ÉQUILIBRÉE === */
.site-header .brand-logo {
  flex: 0 0 185px !important;
  width: 185px !important;
  height: 42px !important;
  padding-left: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: visible !important;
}

.site-header .brand-logo img {
  width: 168px !important;
  height: auto !important;
  max-width: 168px !important;
  max-height: 28px !important;
  object-fit: contain !important;
}

/* nav un peu mieux équilibrée après réduction */
.site-header .nav {
  flex: 1 1 auto !important;
}

@media (max-width: 1120px) {
  .site-header .brand-logo {
    flex-basis: 155px !important;
    width: 155px !important;
    height: 40px !important;
    padding-left: 6px !important;
  }

  .site-header .brand-logo img {
    width: 145px !important;
    max-width: 145px !important;
    max-height: 25px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand-logo {
    flex-basis: 130px !important;
    width: 130px !important;
  }

  .site-header .brand-logo img {
    width: 122px !important;
    max-width: 122px !important;
    max-height: 22px !important;
  }
}

/* === FOOTER LINKEDIN ELSA === */
.footer a {
  color: inherit !important;
  text-decoration: none !important;
}

.footer a:hover {
  opacity: 0.72 !important;
}

/* === IPHONE FINAL OVERRIDE — ELCA STUDIO === */

@media (max-width: 768px) {
  html,
  body {
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .site-header {
    top: 10px !important;
    left: 50% !important;
    width: calc(100% - 20px) !important;
    min-height: 54px !important;
    padding: 7px 8px 7px 12px !important;
    gap: 8px !important;
    border-radius: 999px !important;
  }

  .site-header .brand-logo {
    flex: 0 0 132px !important;
    width: 132px !important;
    height: 38px !important;
    padding-left: 4px !important;
  }

  .site-header .brand-logo img {
    width: 126px !important;
    max-width: 126px !important;
    height: auto !important;
    max-height: 23px !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    min-height: 38px !important;
    padding: 0 13px !important;
    font-size: 12px !important;
    border-radius: 999px !important;
  }

  .header-cta {
    display: none !important;
  }

  .nav {
    display: none !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 10px) !important;
    width: 100% !important;
    padding: 10px !important;
    border-radius: 24px !important;
    background: rgba(246, 239, 232, 0.98) !important;
    box-shadow: 0 24px 70px rgba(47, 27, 16, 0.16) !important;
  }

  body.menu-open .nav {
    display: grid !important;
    gap: 7px !important;
  }

  .nav a {
    width: 100% !important;
    padding: 13px 15px !important;
    border-radius: 17px !important;
    background: rgba(255, 248, 239, 0.62) !important;
    font-size: 14px !important;
    text-align: left !important;
  }

  .hero {
    width: calc(100% - 26px) !important;
    min-height: auto !important;
    padding-top: 118px !important;
    padding-bottom: 58px !important;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 56px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.065em !important;
  }

  .hero-text {
    font-size: 16px !important;
    line-height: 1.58 !important;
  }

  .hero-actions {
    width: 100% !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .section {
    width: calc(100% - 26px) !important;
    padding: 70px 0 !important;
  }

  .profil,
  .contact,
  .reference-grid,
  .agenda-layout,
  .trust-block,
  .cards,
  .two-columns,
  .section-heading,
  .reference-heading,
  .agenda-heading {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  h1,
  h2 {
    font-size: clamp(36px, 11vw, 52px) !important;
    line-height: 1 !important;
  }

  .portrait {
    width: 100% !important;
    max-width: 390px !important;
    aspect-ratio: 0.72 !important;
  }

  .reference-card,
  .reference-card-wide,
  .reference-group-card,
  .reference-conference-card {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 24px !important;
  }

  .reference-card img {
    border-radius: 24px !important;
  }

  .contact-form {
    padding: 24px !important;
    border-radius: 28px !important;
  }

  input,
  textarea,
  select {
    min-height: 54px !important;
    font-size: 16px !important;
  }

  .footer {
    padding: 34px 20px !important;
    text-align: center !important;
  }
}

@media (max-width: 390px) {
  .site-header .brand-logo {
    flex-basis: 118px !important;
    width: 118px !important;
  }

  .site-header .brand-logo img {
    width: 112px !important;
    max-width: 112px !important;
    max-height: 21px !important;
  }

  .menu-toggle {
    padding: 0 11px !important;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 48px) !important;
  }
}
