html, body { height: 100%; overflow: hidden; }
body { background: var(--orange); }

/* ============================================================
   LAYOUT PLEIN ÉCRAN
   ============================================================ */
.split {
  height: 100vh; width: 100vw;
}

/* ---- Contenu ---- */
.split-right {
  background: var(--orange);
  display: flex; flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 48px clamp(40px, 10vw, 140px);
  position: relative; overflow: hidden;
}

/* Watermark COKTL */
.split-right-wm {
  position: absolute; bottom: -10px; right: -10px;
  pointer-events: none; user-select: none; opacity: .07;
}
.split-right-wm .logo-wm {
  font-family: var(--font-logo);
  font-size: 130px; font-weight: 900;
  letter-spacing: -0.5px;
  -webkit-text-stroke: 0.4px var(--dark);
  color: var(--dark); line-height: 1; display: block;
}

/* ---- Header droit ---- */
.right-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .5s .15s ease both;
}
/* ---- Logo (couleur sombre sur fond orange) ---- */
.right-header .logo-coktl { color: var(--dark); }

/* ---- Bouton fermer ---- */
.contact-close-btn {
  display: inline-flex; align-items: center;
  background: none; border: none;
  cursor: none; padding: 0;
}
.contact-close-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(29,29,29,.25);
  color: rgba(29,29,29,.55);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), background .2s, border-color .2s, color .2s;
}
.contact-close-btn:hover .contact-close-x {
  transform: rotate(90deg);
  background: var(--dark); border-color: var(--dark); color: var(--orange);
}

/* ---- Titre ---- */
.right-title { position: relative; z-index: 1; }
.right-title h1 {
  font-family: var(--font);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900; text-transform: uppercase;
  line-height: .9; letter-spacing: -2px;
  color: var(--dark);
  opacity: 0; transform: translateY(16px);
  animation: fadeUp .6s .3s ease both;
}
.right-title p {
  font-size: 16px; font-weight: 400; font-style: italic;
  line-height: 1.6; color: rgba(29,29,29,.8);
  margin-top: 16px; max-width: 320px; text-wrap: pretty;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .5s .42s ease both;
}

/* ---- Liens de contact ---- */
.contact-links {
  display: flex; flex-direction: column; gap: 0;
  position: relative; z-index: 1;
}
.contact-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 18px 0;
  border-bottom: 1.5px solid rgba(29,29,29,.15);
  text-decoration: none; color: var(--dark);
  position: relative;
  opacity: 0; transform: translateX(-12px);
  animation: slideIn .5s ease both;
  transition: padding-left .2s ease;
}
.contact-link:first-child { border-top: 1.5px solid rgba(29,29,29,.15); }

.contact-link:nth-child(1) { animation-delay: .48s; }
.contact-link:nth-child(2) { animation-delay: .55s; }
.contact-link:nth-child(3) { animation-delay: .62s; }
.contact-link:nth-child(4) { animation-delay: .69s; }
.contact-link:nth-child(5) { animation-delay: .76s; }

.contact-link::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--dark);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.contact-link:hover::before { transform: scaleX(1); }
.contact-link:hover { padding-left: 16px; }

.contact-link-left {
  display: flex; align-items: center; gap: 16px;
  position: relative; z-index: 1;
}
.contact-link-name {
  font-family: var(--font); font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0;
  transition: color .2s;
}
.contact-link:hover .contact-link-name { color: var(--light); }

.contact-link-sub {
  font-size: 13px; font-weight: 500; font-style: italic;
  color: rgba(29,29,29,.75); margin-left: 4px; transition: color .2s;
}
.contact-link:hover .contact-link-sub { color: rgba(245,242,239,.75); }

.contact-link-arrow {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(29,29,29,.4);
  color: rgba(29,29,29,.75); font-size: 15px; flex-shrink: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .2s, border-color .2s, color .2s;
}
.contact-link:hover .contact-link-arrow {
  transform: scale(1.15);
  background: var(--orange); border-color: var(--orange); color: var(--dark);
}

/* ---- Footer droit ---- */
.right-footer {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp .5s .9s ease both;
}
.right-footer-copy {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0; color: rgba(29,29,29,.65);
}
.right-footer-socials { display: flex; gap: 8px; }
.social-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(29,29,29,.35);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(29,29,29,.7); text-decoration: none; font-size: 13px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .2s, border-color .2s, color .2s;
}
.social-dot:hover {
  transform: scale(1.18);
  background: var(--dark); border-color: var(--dark); color: var(--orange);
}
.social-dot svg { width: 13px; height: 13px; fill: currentColor; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  html, body { overflow: auto; height: auto; }
  .split { height: auto; min-height: 100vh; }
  .split-right { padding: 36px 28px; gap: 32px; }
  .right-title h1 { font-size: 52px; }
  .contact-link-name { font-size: 18px; }
  .split-right-wm .logo-wm { font-size: 80px; }
}

/* ---- Animations d'entrée ---- */
@media (prefers-reduced-motion: no-preference) {
  .split-left  { animation: fadeIn .70s cubic-bezier(.22,1,.36,1) both; }
  .split-right { animation: fadeUp .65s .10s cubic-bezier(.22,1,.36,1) both; }
}
