:root {
  --ink: #0b1524;
  --ink-soft: #243044;
  --gold: #c9a227;
  --gold-bright: #e4bc3a;
  --paper: #f3eee4;
  --paper-2: #e8e1d4;
  --white: #fbf8f2;
  --line: rgba(11, 21, 36, 0.12);
  --shadow: 0 24px 60px rgba(11, 21, 36, 0.12);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  min-height: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand img { width: 196px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav a[aria-current="page"],
.nav a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(86vh, 820px);
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,21,36,0.28) 0%, rgba(11,21,36,0.55) 100%),
    radial-gradient(circle at 50% 40%, transparent 0%, rgba(11,21,36,0.35) 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 96px 24px 72px;
  max-width: 920px;
}
.kicker {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.hero h1 {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-weight: 520;
  font-size: clamp(2.4rem, 6vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(251,248,242,0.45);
}

.section { padding: 96px 0; }
.section-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.section-lead {
  max-width: 640px;
  color: var(--ink-soft);
}
.rule {
  width: 72px;
  height: 3px;
  background: var(--gold);
  margin: 18px 0 40px;
  border: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  padding: 28px 24px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 18px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.split ul { padding-left: 18px; }
.split li { margin: 0 0 12px; }

.prose p { margin: 0 0 1em; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { padding-left: 18px; margin: 0 0 1.4em; }
.prose li { margin: 0 0 14px; }
.prose .closing {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0 0 24px;
}
.prose .audience {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0 0 1.2em;
}
.prose-wide { max-width: 72ch; }
#equipe {
  padding: 128px 0 140px;
}
#equipe .section-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}
#equipe .prose-wide {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 56px;
  font-size: 18.5px;
  line-height: 1.7;
}
.prose .btn { margin-top: 8px; }

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.duo ul { padding-left: 18px; }
.duo li { margin: 0 0 12px; }
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 32px;
  height: 100%;
}
.panel h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 520;
  line-height: 1.15;
}
.panel .rule { margin-bottom: 22px; }
#emploi .section-title {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.15;
  max-width: 22em;
}

.split-media {
  grid-template-columns: minmax(160px, 0.62fr) 1.38fr;
  align-items: stretch;
  gap: 40px;
}
.portrait-frame {
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.15);
}

.stats {
  background: var(--ink);
  color: var(--white);
}
.stats .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 520;
  color: var(--gold-bright);
  line-height: 1;
}
.stat span { color: rgba(251,248,242,0.72); }

.band {
  background: var(--paper-2);
}
.contact-card {
  background: var(--ink);
  color: var(--white);
  padding: 48px 40px;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a { color: var(--gold-bright); }

.page-hero {
  padding: 88px 0 32px;
}
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.jobs-empty {
  background: var(--white);
  border: 1px dashed var(--line);
  padding: 48px;
  text-align: center;
}

.posts {
  display: grid;
  gap: 22px;
}
.post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.post-card img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}
.post-card div { padding: 28px; }
.post-card h2 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.15;
}
.meta {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.article {
  display: grid;
  grid-template-columns: minmax(0, 72ch);
  justify-content: center;
  padding-bottom: 96px;
}
.article .cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 8px 0 32px;
}
.article h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}
.article h2, .article h3, .article h4 {
  font-family: var(--serif);
  margin-top: 2em;
}
.legal {
  padding-bottom: 128px;
  font-size: 18.5px;
  line-height: 1.75;
}
.legal p {
  max-width: none;
  margin: 0 0 1.05em;
}
.legal h2,
.legal h3,
.legal h4 {
  font-family: var(--serif);
  font-weight: 520;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.2;
  margin: 2em 0 0.65em;
}

.site-footer {
  background: var(--ink);
  color: rgba(251,248,242,0.78);
  padding: 36px 0;
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer a { color: var(--gold-bright); text-decoration: none; }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px 24px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: inline-flex; }
  .grid-3, .split, .duo, .stats .grid-4, .post-card, #equipe .prose-wide {
    grid-template-columns: 1fr;
  }
  .portrait-frame { height: 240px; }
}
