/*
Theme Name: AudioMark Studio Premium
Theme URI: https://www.audiomark.fr
Author: AudioMark Studio
Author URI: https://www.audiomark.fr
Description: Thème WordPress premium complet pour AudioMark Studio.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: audiomark-studio-premium
*/

:root{
  --bg:#091119;
  --bg-soft:#0d1722;
  --text:#f2eadf;
  --muted:#c7baab;
  --gold:#d6be9a;
  --gold-strong:#b99667;
  --line:rgba(214,190,154,.16);
  --shadow:0 18px 50px rgba(0,0,0,.34);
  --radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(214,190,154,.07), transparent 20%),
    radial-gradient(circle at 88% 0%, rgba(145,120,168,.08), transparent 16%),
    linear-gradient(180deg,var(--bg),var(--bg-soft));
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.03;
  background-image:radial-gradient(#fff .45px, transparent .55px);
  background-size:6px 6px;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1140px,calc(100% - 32px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(12px);
  background:rgba(9,17,25,.82);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
}
.brand img{width:220px;height:auto}
.main-nav .menu{
  display:flex;
  list-style:none;
  margin:0;
  padding:0;
  gap:22px;
}
.main-nav a{color:var(--muted);font-size:.95rem}
.main-nav a:hover{color:var(--gold)}

.hero{padding:84px 0 56px}
.hero h1{
  margin:0 0 16px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(2rem,3.5vw,3.2rem);
	letter-spacing:-0.5px;
  font-weight:600;
  line-height:1.1;
  max-width:980px;
}
.kicker,.section-kicker{
  margin:0 0 14px;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.74rem;
  color:var(--gold);
}
.hero .lead,.section-intro,.section p,.pricing-note,.page-content p,.page-content li,.note-box li{
  color:var(--muted);
  line-height:1.8;
}

.hero-actions,.contact-actions,.quote-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:.2s ease;
  cursor:pointer;
}
.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-strong));
  color:#091119;
  border:none;
  box-shadow:var(--shadow);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-secondary{
  background:rgba(255,255,255,.02);
  border:1px solid var(--line);
  color:var(--text);
}
.btn-secondary:hover{border-color:rgba(214,190,154,.35)}

.glass{
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}

.section{padding:30px 0 60px}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:22px;
}
.section h2,.page-content h1,.quote-card h2,.form-card h2{
  margin:0 0 12px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(2rem,3vw,3rem);
  line-height:1;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card,.about-card,.price-card,.contact-panel,.page-content,.quote-card,.form-card,.trust-card,.note-box{
  padding:30px;
}
.card h3,.price-card h3{
  margin:14px 0 10px;
  font-size:1.25rem;
}
.badge{
  display:inline-block;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:.9rem;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.price-card.featured{border-color:rgba(214,190,154,.25)}
.price{
  margin:8px 0 4px;
  color:var(--gold);
  font-size:2.1rem;
  font-weight:800;
}
.price small{color:var(--muted);font-size:.92rem;font-weight:600}
.features{
  list-style:none;
  padding:0;
  margin:18px 0 24px;
}
.features li{
  padding:9px 0;
  border-bottom:1px solid rgba(255,255,255,.05);
  color:var(--muted);
}

.trust-logos{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  align-items:center;
}
.trust-logo-wrap{
  min-height:120px; /* réduit la hauteur globale */
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  border-radius:18px;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.05);
}

.trust-logo-wrap img{
  max-height:50px;
  filter:grayscale(100%);
  opacity:0.7;
  transition:all 0.3s ease;
}

.trust-logo-wrap img:hover{
  filter:grayscale(0%);
  opacity:1;
}

.contact-panel{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
}
.footer{
  border-top:1px solid rgba(255,255,255,.05);
  padding:22px 0 40px;
  color:var(--muted);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
}

.quote-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}
.notice{
  padding:16px 18px;
  border-radius:16px;
  margin-bottom:18px;
  border:1px solid rgba(255,255,255,.08);
}
.notice.success{color:#bfd7b5;background:rgba(191,215,181,.08)}
.notice.error{color:#ffb4a6;background:rgba(255,180,166,.08)}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.form-row{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.form-row.full{grid-column:1 / -1}
label{font-weight:600}
input,textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font:inherit;
}
textarea{min-height:180px;resize:vertical}
input::placeholder,textarea::placeholder{color:#b5a898}

.list-clean{
  margin:18px 0 0;
  padding-left:18px;
}
.list-clean li{margin-bottom:10px}

.table-wrap{overflow:auto;border-radius:18px}
.pricing-table{
  width:100%;
  border-collapse:collapse;
}
.pricing-table th,.pricing-table td{
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.07);
  vertical-align:top;
}
.pricing-table th{
  background:rgba(214,190,154,.12);
  text-align:left;
  color:var(--text);
}
.pricing-table td{color:var(--muted)}

@media (max-width:980px){
  .grid-3,.pricing-grid,.contact-panel,.quote-layout,.form-grid,.trust-logos{grid-template-columns:1fr}
  .header-row,.section-head,.footer-row{flex-direction:column;align-items:flex-start}
  .main-nav .menu{flex-wrap:wrap}
  .brand img{width:180px}
}
@media (max-width:640px){
  .container{width:min(100% - 20px,1140px)}
  .btn{width:100%}
  .card,.about-card,.price-card,.contact-panel,.page-content,.quote-card,.form-card,.trust-card,.note-box{padding:22px}
}
