/*
Theme Name: YouliK Production
Theme URI: https://youlikproductions.com
Author: YouliK Productions
Description: Thème personnalisé YouliK Productions — Agence 360°
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;1,300&display=swap');

:root {
  --black: #080808;
  --deep: #0d0d0d;
  --card: #111111;
  --border: rgba(255,255,255,0.07);
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #f5f0e8;
  --grey: #888;
  --accent: #c9a84c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* =====================
   CUSTOM CURSOR
   ===================== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.18s ease;
}

/* =====================
   NAV
   ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
  backdrop-filter: blur(2px);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* =====================
   HERO
   ===================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 60px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 8px 20px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-badge span {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.15s ease forwards;
  opacity: 0;
}
.hero-title .gold { color: var(--gold); }
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
  max-width: 500px;
  margin-bottom: 52px;
  animation: fadeUp 0.8s 0.3s ease forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeUp 0.8s 0.45s ease forwards;
  opacity: 0;
}

.btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 18px 40px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.btn-secondary:hover { color: var(--white); }
.btn-secondary .arrow {
  width: 32px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s;
}
.btn-secondary:hover .arrow { width: 48px; }
.btn-secondary .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: fadeUp 0.8s 0.6s ease forwards;
  opacity: 0;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.8s 0.7s ease forwards;
  opacity: 0;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { height: 60px; opacity: 1; }
  100% { height: 0; opacity: 0; }
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  writing-mode: vertical-rl;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================
   SECTION BASE
   ===================== */
section { padding: 120px 60px; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 60px;
}
/* =====================
   SERVICES
   ===================== */
#services { background: var(--deep); }
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

.services-desc {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(245,240,232,0.6);
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--card);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover { background: #161616; }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(201,168,76,0.25); }
.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey);
}
.service-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 4px 12px;
}

/* =====================
   PORTFOLIO
   ===================== */
#portfolio { background: var(--black); }
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.portfolio-filter {
  display: flex;
  gap: 24px;
}
.filter-btn {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  background: none;
  border: none;
  cursor: none;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.portfolio-grid {
  columns: 4;
  column-gap: 12px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--card);
  break-inside: avoid;
  margin-bottom: 12px;
}

.portfolio-item:nth-child(1) { height: 600px; }
.portfolio-item:nth-child(2) { height: 300px; }
.portfolio-item:nth-child(3) { height: 460px; }
.portfolio-item:nth-child(4) { height: 420px; }
.portfolio-item:nth-child(5) { height: 500px; }
.portfolio-item:nth-child(6) { height: 360px; }
.portfolio-item:nth-child(7) { height: 440px; }

.portfolio-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-thumb { transform: scale(1.05); }

.p1 { background: linear-gradient(135deg, #1a1a1a, #222); }
.p2 { background: linear-gradient(135deg, #141414, #1c1c1c); }
.p3 { background: linear-gradient(135deg, #181818, #202020); }
.p4 { background: linear-gradient(135deg, #161616, #1e1e1e); }
.p5 { background: linear-gradient(135deg, #131313, #1b1b1b); }
.p6 { background: linear-gradient(135deg, #171717, #1f1f1f); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.portfolio-title-item {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

/* =====================
   ABOUT
   ===================== */
#about { background: var(--deep); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 75%;
  height: 75%;
  background: linear-gradient(135deg, #1a1505, #2a1f08, #1a1505);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.about-img-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 50%;
  height: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-gold-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  text-align: center;
  line-height: 1.1;
  padding: 20px;
}
.about-content .section-title { margin-bottom: 28px; }
.about-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245,240,232,0.6);
  margin-bottom: 20px;
}
.about-values {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.value-item {
  padding: 20px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.value-item:hover { border-color: var(--gold-dim); }
.value-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.value-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}

/* =====================
   TESTIMONIALS
   ===================== */
#testimonials { background: var(--black); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--card);
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.4s, transform 0.4s;
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.testi-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--gold-dim);
  line-height: 0.7;
  margin-bottom: 24px;
}
.testi-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245,240,232,0.7);
  font-style: italic;
  margin-bottom: 32px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.testi-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.testi-role {
  font-size: 12px;
  color: var(--grey);
  margin-top: 2px;
}
.testi-stars {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
}

/* =====================
   CONTACT
   ===================== */
#contact {
  background: var(--deep);
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: 'CONTACT';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px;
  color: rgba(255,255,255,0.015);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  position: relative;
  z-index: 2;
}
.contact-tagline {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245,240,232,0.6);
  margin-bottom: 48px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.contact-item:hover { border-color: rgba(201,168,76,0.3); }
.contact-icon { font-size: 20px; width: 24px; text-align: center; }
.contact-item-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-val {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.contact-item-val a {
  color: var(--white);
  text-decoration: none;
}
.contact-item-val a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}
.form-input, .form-select, .form-textarea {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-select { cursor: none; }
.form-select option { background: var(--card); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 20px;
  cursor: none;
  transition: all 0.3s;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* =====================
   FOOTER
   ===================== */
footer {
  background: #050505;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 12px;
  color: var(--grey);
  margin-top: 8px;
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: var(--grey);
  text-align: right;
  letter-spacing: 1px;
}
.footer-copy span { color: var(--gold); }

.footer-legal {
  background: #030303;
  text-align: center;
  padding: 16px 60px;
  font-size: 11px;
  color: rgba(136,136,136,0.6);
  letter-spacing: 1px;
  border-top: 1px solid var(--border);
}

/* =====================
   DIVIDER
   ===================== */
.divider {
  width: calc(100% - 120px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0 60px;
}

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =====================
   MOBILE (max 768px)
   ===================== */
@media (max-width: 768px) {
  .cursor, .cursor-ring { display: none !important; }
  body { cursor: auto; }
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 16px; font-size: 10px; }
  section { padding: 80px 20px; }
  #hero { padding: 120px 20px 60px; align-items: flex-start; }
  .hero-title { font-size: 56px; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-stats { position: relative; right: auto; bottom: auto; margin-top: 60px; flex-direction: row; flex-wrap: wrap; gap: 20px; justify-content: flex-start; }
  .stat-item { text-align: left; }
  .hero-scroll { display: none; }
  .services-intro, .services-grid, .about-grid, .about-values, .testi-grid, .contact-grid, .form-row { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .portfolio-filter { flex-wrap: wrap; }
  .portfolio-grid { display: flex; flex-direction: column; gap: 16px; }
  .portfolio-item { height: 300px; }
  .about-visual { height: 350px; }
  #contact::before { font-size: 100px; }
  footer { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; gap: 32px; }
	.footer-logo { display: flex; justify-content: center; }
  .footer-links { flex-wrap: wrap; }
  .footer-copy { text-align: center; }
}

/* =====================
   LOGO IMAGE
   ===================== */
.logo img {
  height: 125;
  width: auto;
  display: block;
}
.footer-logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* =====================
   BURGER BUTTON
   ===================== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 10px;
  z-index: 200;
  position: relative;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}

/* Animation burger → croix */
.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--gold);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--gold);
}

/* =====================
   MENU MOBILE OVERLAY
   ===================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 42px) 42px);
  transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}
.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 42px) 42px);
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links li {
  overflow: hidden;
}

.mobile-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
  display: block;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(30px);
  transition: color 0.3s, opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-nav-links li:nth-child(1) .mobile-link { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-links li:nth-child(2) .mobile-link { transition-delay: 0.22s; }
.mobile-menu.open .mobile-nav-links li:nth-child(3) .mobile-link { transition-delay: 0.29s; }
.mobile-menu.open .mobile-nav-links li:nth-child(4) .mobile-link { transition-delay: 0.36s; }
.mobile-link:hover { color: var(--gold); }

.mobile-cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s, background 0.3s, transform 0.2s;
}
.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Bloquer le scroll quand le menu est ouvert */
body.menu-open { overflow: hidden; }

/* =====================
   MOBILE OVERRIDES
   ===================== */
@media (max-width: 768px) {
  .logo img { height: 80px !important; }
  .burger { display: flex; }
  .desktop-cta { display: none; }
}
/* =====================
   CONTACT FORM 7
   ===================== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  padding: 16px 20px !important;
  outline: none !important;
  width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: var(--gold) !important;
}
.wpcf7 textarea {
  min-height: 140px !important;
  resize: vertical !important;
}
.wpcf7 input[type="submit"] {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-family: 'Syne', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border: none !important;
  padding: 20px 40px !important;
  cursor: pointer !important;
  width: 100% !important;
  border-radius: 0 !important;
  transition: background 0.3s !important;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--gold-light) !important;
}
.wpcf7 label {
  font-size: 10px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--grey) !important;
  display: block !important;
  margin-bottom: 8px !important;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block !important;
  margin-bottom: 20px !important;
}
.wpcf7 p {
  margin: 0 !important;
}
.wpcf7 {
  max-width: 600px;
}
