/* ===== HERO-SPLIT (HERO-SPLIT — LAY-6 Neo-Editorial) ===== */
.hero-section {
  padding: clamp(44px, 7vw, 96px) 0;
  padding-top: clamp(44px, 7vw, 80px);
}
.hero-split__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-split__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-split__eyebrow {
  font-family: var(--ff-ui);
  font-size: .76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-split__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
}
.hero-split__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 22px;
}
.hero-split__title em {
  font-style: italic;
  color: var(--accent);
}
.hero-split__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 44ch;
}
.hero-split__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-split__media {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  border-radius: 56px 14px 56px 14px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--text) 12%, transparent);
}
.hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== RÉALISATIONS SECTION ===== */
.real-intro {
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 58ch;
}
.real-intro strong {
  color: var(--text);
  font-style: italic;
  font-family: var(--ff-display);
}

/* ===== MENU MOBILE ===== */
.burger {
  position: fixed;
  top: calc((var(--header-h-mobile) - 44px) / 2);
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.burger span::before,
.burger span::after {
  content: '';
  position: absolute;
  left: 0;
}
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: rotate(45deg) translate(5px, 5px); }
.burger.is-open span::after  { transform: rotate(-45deg) translate(5px, -5px); }

.menu-mobile {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--bg);
  z-index: 1000;
  padding: calc(var(--header-h-mobile) + 32px) 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s var(--ease-out), opacity .35s ease, visibility 0s linear .35s;
  border-bottom: 1px solid var(--border);
}
.menu-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .35s var(--ease-out), opacity .35s ease;
}
.menu-mobile a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.menu-mobile a:hover { color: var(--accent); }
.menu-mobile a.btn {
  justify-content: center;
  gap: 10px;
  padding: .95rem 1.6rem;
  min-height: 52px;
  border-bottom: 0;
  margin-top: 16px;
  font-family: var(--ff-ui);
  font-size: 1rem;
}
.menu-mobile a.btn svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .burger { display: none; }
  .menu-mobile { display: none; }
}
