/* ============================================================
   GET UP PROD — Feuille de style principale
   Palette : noir scène, jaune logo (accent unique)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Space+Mono:wght@400;700&family=Work+Sans:wght@400;500;600;700;800&display=swap');

:root{
  --bg:        #0D0D0D;
  --bg-alt:    #161616;
  --bg-card:   #1B1B1B;
  --line:      #2C2C2C;
  --text:      #F5F4EF;
  --text-dim:  #9C9C96;
  --yellow: #FFD200; /* jaune du logo GET UP PROD */
  --red:         #FF4136; /* réservé aux états d'erreur du formulaire */

  --display: 'Anton', sans-serif;
  --body: 'Work Sans', sans-serif;
  --mono: 'Space Mono', monospace;

  --radius: 2px;
  --container: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

h1, h2, h3{
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.02;
  margin: 0;
  letter-spacing: 0.01em;
}

h2{ font-size: clamp(34px, 5vw, 56px); }
h3{ font-size: 22px; }

p{ margin: 0; }

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 2px solid var(--text);
  color: var(--text);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn:hover{ transform: translate(-2px,-2px); }
.btn-fill{
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0D0D0D;
}
.btn-fill:hover{ background: #E0BD00; border-color: #E0BD00; color: #0D0D0D; }
.btn-ghost:hover{ border-color: var(--yellow); color: var(--yellow); }

/* ============================== HEADER / NAV ============================== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo{
  display: flex;
  align-items: center;
}
.logo img{
  height: 72px;
  width: auto;
  display: block;
}

.menu-toggle{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.menu-toggle:hover{ border-color: var(--yellow); color: var(--yellow); }

.menu-toggle .bars{
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}
.menu-toggle .bars span{
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] .bars span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.nav-dropdown{
  position: absolute;
  top: 100%;
  margin-top: 8px;
  right: 28px;
  width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  padding: 10px;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.nav-dropdown.open{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-dropdown ul li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.nav-dropdown ul li a::after{ content: '→'; opacity: 0; transition: opacity .15s ease; }
.nav-dropdown ul li a:hover, .nav-dropdown ul li a.active{
  background: var(--bg-alt);
  color: var(--yellow);
  padding-left: 18px;
}
.nav-dropdown ul li a:hover::after, .nav-dropdown ul li a.active::after{ opacity: 1; }
.nav-dropdown ul li + li{ border-top: 1px solid var(--line); margin-top: 2px; padding-top: 2px; }

/* ============================== HERO ============================== */

.hero{
  position: relative;
  padding: 84px 0 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero .wrap{
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 70px;
}

.hero h1{
  font-size: clamp(30px, 9vw, 92px);
  margin-top: 18px;
}
.hero h1 .line2{ color: var(--yellow); }

.hero-sub{
  margin-top: 22px;
  max-width: 480px;
  color: var(--text-dim);
  font-size: 17px;
}

.hero-cta{
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-art{
  position: relative;
  display: flex;
  justify-content: center;
}

.vinyl{
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #111 0 3px, #1c1c1c 3px 7px);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 9s linear infinite;
}
.vinyl::after{
  content: '';
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--yellow);
  border: 6px solid var(--bg);
}
@keyframes spin{ to{ transform: rotate(360deg); } }

.stamp{
  position: absolute;
  top: -14px;
  right: -6px;
  width: 132px;
  height: 132px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-12deg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.4;
  padding: 10px;
}

/* marquee ticker */
.ticker{
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track{
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-track span{
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 26px;
  color: var(--text-dim);
  white-space: nowrap;
}
.ticker-track span b{ color: var(--yellow); font-weight: 400; }
@keyframes ticker{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ============================== SECTIONS GÉNÉRALES ============================== */

section{ padding: 90px 0; }
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
.section-head p{ color: var(--text-dim); max-width: 420px; }

/* ============================== SERVICES GRID ============================== */

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card{
  background: var(--bg);
  padding: 34px 28px;
  position: relative;
  transition: background .2s ease;
  opacity: 0;
  transform: translateY(14px);
}
.service-card.in{ opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease, background .2s ease; }
.service-card:hover{ background: var(--bg-card); }

.service-tag{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 18px;
}

.service-card .icon{ margin-bottom: 18px; color: var(--yellow); }
.service-card h3{ margin-bottom: 12px; }
.service-card p{ color: var(--text-dim); font-size: 14.5px; }

@media (max-width: 880px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; }
}

/* ---- Téléphones (≤ 600px) ---- */
@media (max-width: 600px){
  .wrap{ padding: 0 18px; }
  .services-grid{ grid-template-columns: 1fr; }

  .site-header .wrap{ min-height: 76px; }
  .logo img{ height: 50px; }
  .menu-toggle{ padding: 9px 12px; font-size: 11px; }
  .menu-toggle .bars{ width: 14px; }

  .nav-dropdown{
    right: 18px;
    width: min(260px, calc(100vw - 36px));
  }

  .hero{ padding-top: 64px; }
  .hero .wrap{ padding-bottom: 48px; gap: 28px; }
  .hero-sub{ font-size: 15.5px; }
  .hero-cta{ flex-direction: column; align-items: stretch; }
  .hero-cta .btn{ justify-content: center; }

  .vinyl{ width: 160px; height: 160px; }
  .vinyl::after{ width: 50px; height: 50px; }
  .stamp{ width: 96px; height: 96px; font-size: 9px; top: -8px; right: -4px; }

  .ticker-track span{ font-size: 11px; padding: 12px 16px; }

  section{ padding: 56px 0; }
  .section-head{ margin-bottom: 32px; padding-bottom: 20px; }
  h2{ font-size: clamp(28px, 8vw, 56px); }

  .service-card{ padding: 26px 20px; }

  .cta-band .wrap{ flex-direction: column; align-items: flex-start; }
  .cta-band .btn{ width: 100%; justify-content: center; }

  .footer-bottom{ flex-direction: column; align-items: flex-start; }

  .contact-info-card{ padding: 18px; }
}

/* ============================== BANDE CTA ============================== */

.cta-band{
  background: var(--yellow);
  color: #0D0D0D;
}
.cta-band .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2{ font-size: clamp(28px, 4vw, 44px); }
.cta-band .btn{ border-color: #0D0D0D; color: #0D0D0D; }
.cta-band .btn:hover{ background: #0D0D0D; color: var(--yellow); border-color: #0D0D0D; }

/* ============================== FOOTER ============================== */

.site-footer{
  border-top: 1px solid var(--line);
  padding: 56px 0 30px;
  background: var(--bg-alt);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h4{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 16px;
}
.footer-grid p, .footer-grid a{ color: var(--text-dim); font-size: 14px; }
.footer-grid ul li{ margin-bottom: 10px; }
.footer-grid ul li a:hover{ color: var(--yellow); }
.footer-bottom{
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
}

@media (max-width: 760px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ============================== PAGE HEADER (sous-pages) ============================== */

.page-head{
  padding: 64px 0 50px;
  border-bottom: 1px solid var(--line);
}
.page-head h1{ font-size: clamp(36px, 6vw, 64px); margin-top: 14px; }
.page-head p{ color: var(--text-dim); max-width: 540px; margin-top: 18px; }

/* ============================== CONTACT ============================== */

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card{
  border: 1px solid var(--line);
  padding: 22px;
  margin-bottom: 16px;
  border-radius: var(--radius);
}
.contact-info-card .eyebrow{ display:block; margin-bottom: 8px; }
.contact-info-card a, .contact-info-card p{ font-size: 16px; }

.field{ margin-bottom: 22px; }
.field label{
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea{
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  border-radius: var(--radius);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--yellow);
}
.field textarea{ resize: vertical; min-height: 130px; }

#form-status{
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 13px;
  padding: 14px 16px;
  border-radius: var(--radius);
  display: none;
}
#form-status.success{ display: block; background: rgba(255,210,0,0.12); border: 1px solid var(--yellow); color: var(--yellow); }
#form-status.error{ display: block; background: rgba(255,65,54,0.12); border: 1px solid var(--red); color: var(--red); }

@media (max-width: 880px){
  .contact-grid{ grid-template-columns: 1fr; gap: 36px; }
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* ============================== PAGES LÉGALES ============================== */

.legal .legal-content{
  max-width: 760px;
}
.legal-content h3{
  margin-top: 42px;
  margin-bottom: 14px;
  color: var(--yellow);
}
.legal-content h3:first-of-type{ margin-top: 0; }
.legal-content p{
  color: var(--text-dim);
  margin-bottom: 14px;
  font-size: 15.5px;
}
.legal-content p strong{ color: var(--text); }
.legal-content a:not(.btn){ color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.legal-updated{
  font-family: var(--mono);
  font-size: 13px;
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 36px !important;
}

.footer-legal-links a{ color: var(--text-dim); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal-links a:hover{ color: var(--yellow); }

/* ============================== CASE RGPD FORMULAIRE ============================== */

.field-consent{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.field-consent input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--yellow);
  cursor: pointer;
}
.field-consent label{
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
  cursor: pointer;
}
.field-consent label a{ color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }

/* ============================== HONEYPOT ANTI-SPAM ============================== */

.honeypot{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================== PAGE ADHÉSION ============================== */

.legal-content h2{
  font-size: clamp(28px, 4.5vw, 42px);
  margin-top: 56px;
  margin-bottom: 20px;
  color: var(--text);
}
.legal-content h2:first-of-type{ margin-top: 0; }

.callout{
  font-family: var(--mono);
  font-size: 13.5px;
  border: 1px solid var(--yellow);
  background: rgba(255,210,0,0.06);
  padding: 14px 18px;
  border-radius: var(--radius);
  color: var(--text);
  margin: 4px 0 32px;
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}
.pricing-card{
  background: var(--bg);
  padding: 34px 28px;
  text-align: center;
}
.pricing-card .price{
  font-family: var(--display);
  font-size: 52px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pricing-card .price span{
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-left: 4px;
}
.pricing-card p{ color: var(--text-dim); font-size: 14.5px; margin: 0; }

.checklist{
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.checklist li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 15.5px;
}
.checklist li:last-child{ border-bottom: none; }
.checklist li::before{
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  background: var(--yellow);
  border-radius: 50%;
}

.adhesion-cta{
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 44px 40px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 8px;
}
.adhesion-cta p{
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 28px;
}
.adhesion-cta .btn{ font-size: 15px; padding: 16px 34px; color: #0D0D0D; text-decoration: none; }
.adhesion-cta .btn:hover{ color: #0D0D0D; }
.adhesion-cta .alt-contact{
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
}
.adhesion-cta .alt-contact a{
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .adhesion-cta{ padding: 30px 22px; }
}
