/* Magic Pictures — feuille de style unique.
   Direction validée le 20/09/2026 : nuit, argent pour le Spin 360, or pour le Miroir photo. */

:root {
  --night: #0B0B0C;
  --night-2: #141416;
  --line: #2A2A2E;
  --text: #ECEAE5;
  --dim: #A3A19B;
  --silver: #C3C6CC;
  --gold: #CDA75E;
  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --body: "Schibsted Grotesk", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
}
h1, h2, h3, p, figure, ul { margin: 0; }
a { color: inherit; }
img, video { display: block; max-width: 100%; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- En-tête ---------- */
.top {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px clamp(16px, 3vw, 36px); border-bottom: 1px solid var(--line);
}
.logo {
  width: 150px; aspect-ratio: 520 / 197; flex: none;
  background: url("media/logo.png") center / contain no-repeat;
}
.top nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px); font-size: 15px; }
.top nav a { text-decoration: none; color: var(--dim); }
.top nav a:hover { color: var(--text); }
.top nav .tel { color: var(--text); font-weight: 600; }

/* ---------- Les deux moitiés ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; height: clamp(560px, 82vh, 820px); }
.half { position: relative; overflow: hidden; text-decoration: none; color: var(--text); background: var(--night-2); }
.half + .half { border-left: 1px solid var(--night); }
.half img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.half.spin img { object-position: 50% 58%; }
.half.miroir img { object-position: 50% 45%; }
.half::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, .78), rgba(0, 0, 0, 0));
}
.half .label { position: absolute; left: clamp(18px, 3vw, 40px); right: 18px; bottom: clamp(20px, 3.4vw, 40px); z-index: 1; }
.half h2 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3.4rem, 7vw, 6.6rem); line-height: .86; letter-spacing: .005em;
}
.spin h2 { color: var(--silver); }
.miroir h2 { color: var(--gold); }
.half .line { margin-top: 10px; font-size: clamp(16px, 1.4vw, 19px); max-width: 30ch; }

/* ---------- Bandeau d'appel ---------- */
.ask {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 28px;
  padding: 22px clamp(16px, 3vw, 36px); border-bottom: 1px solid var(--line);
}
.ask p { font-size: clamp(18px, 1.8vw, 22px); }
.ask p a { font-weight: 600; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.btn {
  display: inline-block; font: inherit; font-weight: 600; font-size: 16px; text-decoration: none; cursor: pointer;
  color: var(--night); background: var(--gold); border: 0; padding: 14px 24px;
}
.btn:hover { background: #E0BE78; }

/* ---------- Sections produit ---------- */
.product {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 96px); align-items: center;
  max-width: 1180px; margin-inline: auto; padding: clamp(56px, 9vw, 120px) clamp(16px, 3vw, 36px);
}
.product + .product { border-top: 1px solid var(--line); }
.copy { display: grid; gap: 18px; max-width: 46ch; }
.copy h3 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: .9; }
#spin .copy h3 { color: var(--silver); }
#miroir .copy h3 { color: var(--gold); }
.copy p { color: var(--dim); }
.copy p strong { color: var(--text); font-weight: 500; }
.copy .more { color: var(--text); font-weight: 600; text-underline-offset: 4px; }
#spin .copy .more { text-decoration-color: var(--silver); }
#miroir .copy .more { text-decoration-color: var(--gold); }

.phone-frame { justify-self: center; width: min(100%, 320px); display: grid; gap: 12px; }
.phone-frame video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 26px; border: 6px solid #1E1E21; background: #000; }
figcaption { font-size: 13px; color: var(--dim); }
.print { display: grid; gap: 12px; }
.print img { width: 100%; height: auto; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9); }

/* ---------- Zone d'intervention ---------- */
.zone {
  border-top: 1px solid var(--line); background: var(--night-2);
  padding: clamp(40px, 6vw, 72px) clamp(16px, 3vw, 36px); text-align: center;
}
.zone p { max-width: 46ch; margin-inline: auto; font-size: clamp(18px, 2vw, 24px); }
.zone strong { color: var(--gold); font-weight: 500; }

/* ---------- Devis ---------- */
.devis { background: var(--night-2); border-top: 1px solid var(--line); }
.devis-inner {
  max-width: 1180px; margin-inline: auto; padding: clamp(56px, 8vw, 110px) clamp(16px, 3vw, 36px);
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px);
}
.devis h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: .9; }
.devis-side { display: grid; gap: 18px; align-content: start; }
.devis-side p { color: var(--dim); max-width: 34ch; }
.big-tel { font-family: var(--display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold); text-decoration: none; line-height: 1; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.f { display: grid; gap: 6px; }
.f.wide, .consent, .note, form .btn, .erreur { grid-column: 1 / -1; }
label { font-size: 14px; color: var(--dim); }
input[type="text"], input[type="tel"], input[type="email"], input[type="date"], select, textarea {
  font: inherit; font-size: 16px; color: var(--text); background: var(--night); width: 100%; min-width: 0;
  border: 1px solid var(--line); border-radius: 0; padding: 12px 14px; color-scheme: dark;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: center; font-size: 15px; line-height: 1.4; }
.consent span { flex: 1; }
.note { grid-column: 1 / -1; margin-top: -6px; font-size: 13px; color: var(--dim); }
.note a { color: var(--dim); text-underline-offset: 3px; }
.note a:hover { color: var(--text); }
.consent input { margin-top: 3px; width: 18px; height: 18px; flex: none; accent-color: var(--gold); }
form .btn { justify-self: start; }
.erreur { border-left: 3px solid #E0714F; padding: 10px 14px; background: rgba(224, 113, 79, .08); font-size: 15px; }
.pot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Pages de texte (mentions, confidentialité, merci) ---------- */
.page { max-width: 760px; margin-inline: auto; padding: clamp(48px, 7vw, 96px) clamp(16px, 3vw, 36px); display: grid; gap: 22px; }
.page h1 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: .92; }
.page h2 { font-size: 1.15rem; font-weight: 600; color: var(--gold); margin-top: 16px; }
.page p, .page li { color: var(--dim); }
.page strong { color: var(--text); font-weight: 500; }
.page ul { padding-left: 20px; display: grid; gap: 6px; }
.page a { text-underline-offset: 3px; }
.retour { display: inline-block; margin-top: 16px; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ---------- Pied de page ---------- */
footer {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px;
  padding: 24px clamp(16px, 3vw, 36px); border-top: 1px solid var(--line); font-size: 14px; color: var(--dim);
}
footer a { text-decoration: none; }
footer a:hover { color: var(--text); }
footer span { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Téléphone ---------- */
@media (max-width: 760px) {
  .logo { width: 118px; }
  .top nav .hide-sm { display: none; }
  .split { grid-template-columns: 1fr; height: auto; }
  .half.spin { height: min(74svh, 640px); }
  .half.miroir { height: min(52svh, 440px); }
  .half + .half { border-left: 0; border-top: 1px solid var(--night); }
  .product, .devis-inner, form { grid-template-columns: 1fr; }
  #miroir .print { order: 2; }
  .phone-frame { width: min(100%, 280px); }
  form .btn { justify-self: stretch; text-align: center; }
}
