@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap");
/* Shonen Retro Game — shared foundation
   Loaded by every style folder before its own style.css.
   Palette = "SRG Premium" per 06_documents-reference/04_CHARTE_GRAPHIQUE_IDENTITE_ACTUELLE.md
   Typography = Barlow Condensed (headings) + Inter (body), the system already
   established in 03_modeles-existants/Modele-A-Premium-Editorial.html. */

.srgh-page {
  --srgh-ink: #080b13;
  --srgh-navy: #0b1020;
  --srgh-panel: #11172a;
  --srgh-white: #f7f8fc;
  --srgh-paper: #eef0f5;
  --srgh-copy: #252b3a;
  --srgh-muted: #aeb4c5;
  --srgh-yellow: #ffd52a;
  --srgh-blue: #2e6bff;
  --srgh-cyan: #22d3e6;
  --srgh-violet: #7c3aed;
  --srgh-magenta: #ff2ca8;
  --srgh-border-dark: rgba(255, 255, 255, .15);
  --srgh-border-light: rgba(8, 11, 19, .14);
  --srgh-shell: 1440px;
  --srgh-radius: 14px;
  --srgh-shadow: 0 24px 70px rgba(8, 11, 19, .18);
  --srgh-heading: "Barlow Condensed", Impact, sans-serif;
  --srgh-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.srgh-page, .srgh-page * { box-sizing: border-box; }
.srgh-page { scroll-behavior: smooth; }
.srgh-page {
  margin: 0;
  overflow-x: hidden;
  background: var(--srgh-paper);
  color: var(--srgh-copy);
  font-family: var(--srgh-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  isolation: isolate;
}
.srgh-page img { display: block; max-width: 100%; }
.srgh-page :where(a) { color: inherit; }
.srgh-page :where(button), .srgh-page :where(a) { -webkit-tap-highlight-color: transparent; }
.srgh-page :where(button) { font: inherit; cursor: pointer; }

.srgh-shell {
  width: min(calc(100% - clamp(32px, 6vw, 96px)), var(--srgh-shell));
  margin-inline: auto;
}
.srgh-section { position: relative; padding: clamp(56px, 7vw, 100px) 0; }
.srgh-section--tight { padding: clamp(40px, 5vw, 64px) 0; }

/* Skip link */
.srgh-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--srgh-yellow);
  color: var(--srgh-ink);
  padding: 12px 18px;
  font: 700 14px/1 var(--srgh-heading);
  border-radius: 0 0 8px 0;
}
.srgh-skip:focus { left: 0; }

/* Focus visibility — never rely on color alone */
.srgh-page a:focus-visible,
.srgh-page button:focus-visible,
.srgh-page input:focus-visible,
.srgh-page textarea:focus-visible,
.srgh-page select:focus-visible,
.srgh-page summary:focus-visible,
.srgh-page [tabindex]:focus-visible {
  outline: 3px solid var(--srgh-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Buttons */
.srgh-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--srgh-yellow);
  color: #171300;
  font: 700 15px/1 var(--srgh-heading);
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.srgh-btn:hover { transform: translateY(-2px); background: #ffe160; }
.srgh-btn--dark { background: var(--srgh-ink); color: var(--srgh-white); }
.srgh-btn--dark:hover { background: #1a2030; }
.srgh-btn--ghost { border-color: currentColor; background: transparent; color: inherit; }
.srgh-btn--ghost:hover { background: rgba(255, 255, 255, .12); }

/* Animated LED signature bar — kept subtle, disabled under reduced motion */
.srgh-led {
  height: 4px;
  background: linear-gradient(90deg, var(--srgh-blue), var(--srgh-violet), var(--srgh-cyan), var(--srgh-magenta), var(--srgh-yellow));
  background-size: 200% 100%;
  animation: srgh-led-scroll 8s linear infinite;
}
@keyframes srgh-led-scroll {
  from { background-position: 0 0; }
  to { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .srgh-led { animation: none; }
}

/* FAQ — native <details>, accessible without JS */
.srgh-faq { display: flex; flex-direction: column; gap: 10px; }
.srgh-faq details {
  border: 1.5px solid var(--srgh-border-light);
  border-radius: 8px;
  padding: 4px 16px;
}
.srgh-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font: 600 15px/1.4 var(--srgh-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
}
.srgh-faq summary::-webkit-details-marker { display: none; }
.srgh-faq summary::after {
  content: "+";
  font: 700 20px/1 var(--srgh-heading);
  flex: none;
}
.srgh-faq details[open] summary::after { content: "\2212"; }
.srgh-faq p { margin: 0 0 14px; font-size: 15px; line-height: 1.65; color: var(--srgh-copy); opacity: .82; }

/* Quote form confirmation panel (client-side demo, no backend yet) */
.srgh-confirm {
  display: none;
  text-align: center;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
}
.srgh-confirm[data-active] { display: block; }
.srgh-confirm__check {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font: 700 24px/1 var(--srgh-body);
}

/* Visually-hidden utility (skip-link-adjacent labels, sr-only text) */
.srgh-vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

@media (max-width: 720px) {
  .srgh-section { padding: clamp(40px, 9vw, 64px) 0; }
}


/* Shonen Retro Game — Modèle H "Nocturne laqué"
   Deep continuous black, luxe technique: hairlines, generous padding,
   thin gradient rule as signature device, vertical kanji on hero edge.
   No neon glow, no drop shadows — restraint is the luxury. */

/* ---------------------------------------------------------------------
   Base page
   ------------------------------------------------------------------- */
.srgh-page {
  background: var(--srgh-ink);
  color: var(--srgh-white);
}
.srgh-page main { display: block; }
.srgh-page h1, .srgh-page h2, .srgh-page h3 { font-family: var(--srgh-heading); font-weight: 800; margin: 0; text-transform: uppercase; letter-spacing: .01em; }
.srgh-page p { margin: 0; }
.srgh-lede { font-size: 16px; line-height: 1.75; color: var(--srgh-muted); }
.srgh-lede + .srgh-lede { margin-top: 16px; }

.srgh-h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  margin-bottom: clamp(20px, 3vw, 32px);
  color: var(--srgh-white);
}

.srgh-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--srgh-cyan);
  font: 700 13px/1 var(--srgh-heading);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.srgh-kicker::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: var(--srgh-cyan);
  flex: none;
}

/* Signature thin gradient rule, cyan → violet → magenta */
.srgh-rule-gradient {
  height: 1.5px;
  background: linear-gradient(90deg, var(--srgh-cyan), var(--srgh-violet), var(--srgh-magenta));
  border: none;
  margin: 0;
}

/* ---------------------------------------------------------------------
   Nav
   ------------------------------------------------------------------- */
.srgh-nav {
  position: relative;
  background: var(--srgh-ink);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.srgh-nav__bar {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  min-height: 76px;
  padding-block: 12px;
}
.srgh-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--srgh-white);
  margin-right: auto;
}
.srgh-nav__brand img { border-radius: 6px; }
.srgh-nav__wordmark {
  font: 800 16px/1 var(--srgh-heading);
  letter-spacing: .06em;
  white-space: nowrap;
}
.srgh-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.srgh-nav__links a {
  text-decoration: none;
  color: var(--srgh-muted);
  font: 600 14px/1 var(--srgh-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 2px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.srgh-nav__links a[aria-current="page"] {
  color: var(--srgh-white);
  font-weight: 800;
}
.srgh-nav__cta {
  border: 1.5px solid var(--srgh-yellow);
  color: var(--srgh-yellow);
  background: transparent;
  font: 700 13px/1 var(--srgh-heading);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  transition: background-color .18s ease, color .18s ease;
}
.srgh-nav__cta:hover { background: var(--srgh-yellow); color: var(--srgh-ink); }

.srgh-nav__burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--srgh-white);
}
.srgh-nav__burger-bars,
.srgh-nav__burger-bars::before,
.srgh-nav__burger-bars::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--srgh-white);
  position: relative;
}
.srgh-nav__burger-bars::before { position: absolute; top: -6px; }
.srgh-nav__burger-bars::after { position: absolute; top: 6px; }

/* Mobile drawer */
.srgh-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--srgh-ink);
  display: flex;
  flex-direction: column;
  padding: 24px clamp(24px, 6vw, 48px) 40px;
}
.srgh-drawer[hidden] { display: none; }
.srgh-drawer__close {
  align-self: flex-end;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  color: var(--srgh-white);
  font-size: 18px;
}
.srgh-drawer nav {
  margin-top: clamp(24px, 8vh, 64px);
  display: flex;
  flex-direction: column;
}
.srgh-drawer nav a {
  color: var(--srgh-white);
  text-decoration: none;
  font: 700 26px/1 var(--srgh-heading);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 18px 0;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.srgh-drawer nav a[aria-current="page"] { color: var(--srgh-yellow); }
.srgh-drawer nav .srgh-btn { margin-top: 24px; align-self: flex-start; }
.srgh-page.srgh-drawer-open { overflow: hidden; }

@media (max-width: 880px) {
  .srgh-nav__links { display: none; }
  .srgh-nav__cta { display: none; }
  .srgh-nav__burger { display: inline-flex; }
}

/* ---------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------- */
.srgh-hero {
  position: relative;
  overflow: hidden;
  background: var(--srgh-ink);
}
.srgh-hero__media {
  position: absolute;
  inset: 0;
}
.srgh-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.srgh-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 70% 40%, rgba(8, 11, 19, .15), rgba(8, 11, 19, .97));
}
.srgh-hero__inner {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: flex;
  align-items: center;
  padding-block: clamp(48px, 8vw, 96px);
}
.srgh-hero__body { max-width: 700px; }
.srgh-hero__body h1 {
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 1.02;
  color: var(--srgh-white);
}
.srgh-hero__sub {
  margin-top: 22px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--srgh-muted);
}
.srgh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.srgh-hero__kanji {
  position: absolute;
  right: clamp(10px, 3.4vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font: 700 clamp(22px, 3.6vw, 40px)/1 var(--srgh-heading);
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .14);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .srgh-hero__kanji { display: none; }
}

/* ---------------------------------------------------------------------
   3 / 4 column info strips with hairline dividers
   ------------------------------------------------------------------- */
.srgh-strip {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.srgh-strip--3 { grid-template-columns: repeat(3, 1fr); }
.srgh-strip--4 { grid-template-columns: repeat(4, 1fr); }
.srgh-strip > div {
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, .1);
}
.srgh-strip > div:last-child { border-right: none; }
.srgh-strip__num {
  display: block;
  font: 800 15px/1 var(--srgh-heading);
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.srgh-strip h3 {
  font-size: 20px;
  color: var(--srgh-white);
  margin-bottom: 10px;
  letter-spacing: .03em;
}
.srgh-strip p, .srgh-strip li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--srgh-muted);
}
.srgh-strip ul {
  margin: 12px 0 0;
  padding-left: 18px;
}
.srgh-strip li { margin-bottom: 6px; }
.text-cyan { color: var(--srgh-cyan); }
.text-violet { color: var(--srgh-violet); }
.text-magenta { color: var(--srgh-magenta); }
.text-yellow { color: var(--srgh-yellow); }

@media (max-width: 880px) {
  .srgh-strip--3, .srgh-strip--4 { grid-template-columns: 1fr; }
  .srgh-strip > div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .srgh-strip > div:last-child { border-bottom: none; }
}

/* ---------------------------------------------------------------------
   Full-bleed photo band with overlaid text panel
   ------------------------------------------------------------------- */
.srgh-band {
  position: relative;
  overflow: hidden;
  background: var(--srgh-ink);
}
.srgh-band__img {
  width: 100%;
  height: clamp(380px, 52vw, 620px);
  object-fit: cover;
  display: block;
}
.srgh-band__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.srgh-band__panel-inner {
  width: min(520px, 92%);
  padding: clamp(24px, 4vw, 52px) clamp(24px, 4vw, 40px);
  margin-left: clamp(16px, 6vw, 80px);
  background: linear-gradient(100deg, rgba(8, 11, 19, .96) 62%, rgba(8, 11, 19, 0));
}
.srgh-band--right .srgh-band__panel { justify-content: flex-end; }
.srgh-band--right .srgh-band__panel-inner {
  margin-left: 0;
  margin-right: clamp(16px, 6vw, 80px);
  background: linear-gradient(260deg, rgba(8, 11, 19, .96) 62%, rgba(8, 11, 19, 0));
}
.srgh-band__panel-inner h2, .srgh-band__panel-inner h3 {
  color: var(--srgh-white);
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 14px;
}
.srgh-band__panel-inner p {
  color: var(--srgh-muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.srgh-band__panel-inner a {
  display: inline-block;
  margin-top: 18px;
  color: var(--srgh-cyan);
  font: 700 14px/1 var(--srgh-heading);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}
.srgh-band__check { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.srgh-band__check li { color: var(--srgh-muted); font-size: 14.5px; }
.srgh-band__check li::marker { content: ""; }

@media (max-width: 640px) {
  .srgh-band__panel { align-items: flex-end; }
  .srgh-band__panel-inner {
    width: 100%;
    margin: 0;
    background: linear-gradient(0deg, rgba(8, 11, 19, .97) 55%, rgba(8, 11, 19, 0));
  }
  .srgh-band--right .srgh-band__panel-inner { margin: 0; }
}

/* ---------------------------------------------------------------------
   Standard sections / splits / chips / steps
   ------------------------------------------------------------------- */
.srgh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.srgh-split__media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  filter: grayscale(.15);
}
@media (max-width: 880px) {
  .srgh-split { grid-template-columns: 1fr; }
}

.srgh-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
}
.srgh-chip {
  background: var(--srgh-ink);
  padding: clamp(22px, 3vw, 32px) clamp(18px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.srgh-chip strong {
  font: 700 17px/1.2 var(--srgh-heading);
  color: var(--srgh-white);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.srgh-chip span { color: var(--srgh-muted); font-size: 14.5px; line-height: 1.5; }
@media (max-width: 720px) {
  .srgh-chip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .srgh-chip-grid { grid-template-columns: 1fr; }
}

.srgh-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.srgh-step__num {
  display: block;
  font: 800 26px/1 var(--srgh-heading);
  color: var(--srgh-cyan);
  margin-bottom: 12px;
}
.srgh-step h3 {
  font-size: 18px;
  color: var(--srgh-white);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.srgh-step p { color: var(--srgh-muted); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 720px) {
  .srgh-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .srgh-steps { grid-template-columns: 1fr; }
}

/* Photo strip (proof section, simple grid, no borders) */
.srgh-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.srgh-photo-grid img {
  width: 100%;
  height: clamp(160px, 22vw, 260px);
  object-fit: cover;
  display: block;
  filter: grayscale(.2);
  border-radius: 2px;
}
@media (max-width: 640px) {
  .srgh-photo-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------------------
   Consoles collection grid + filters
   ------------------------------------------------------------------- */
.srgh-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.srgh-filter {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--srgh-muted);
  padding: 10px 18px;
  min-height: 44px;
  border-radius: 999px;
  font: 700 13px/1 var(--srgh-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.srgh-filter[aria-pressed="true"] {
  color: var(--srgh-ink);
  background: var(--srgh-cyan);
  border-color: var(--srgh-cyan);
}

.srgh-console-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
}
.srgh-console-card {
  background: var(--srgh-ink);
  display: flex;
  flex-direction: column;
}
.srgh-console-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: grayscale(.25);
}
.srgh-console-card__body { padding: 18px 18px 24px; }
.srgh-console-card__kicker {
  display: block;
  font: 700 11.5px/1 var(--srgh-heading);
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.srgh-console-card h3 {
  font-size: 19px;
  color: var(--srgh-white);
  margin-bottom: 8px;
}
.srgh-console-card p { color: var(--srgh-muted); font-size: 14px; line-height: 1.55; }
.srgh-console-card--closing {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.srgh-console-card--closing p {
  font: 700 15px/1.4 var(--srgh-heading);
  color: var(--srgh-white);
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .srgh-console-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .srgh-console-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------
   FAQ — override base.css for dark background legibility
   ------------------------------------------------------------------- */
.srgh-faq details {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .02);
}
.srgh-faq summary { color: var(--srgh-white); }
.srgh-faq p { color: var(--srgh-muted); opacity: 1; }

/* ---------------------------------------------------------------------
   Closing CTA band (yellow)
   ------------------------------------------------------------------- */
.srgh-cta-band {
  background: var(--srgh-yellow);
  color: var(--srgh-ink);
}
.srgh-cta-band .srgh-h2, .srgh-cta-band h2 { color: var(--srgh-ink); }
.srgh-cta-band .srgh-lede { color: rgba(8, 11, 19, .78); }
.srgh-devis {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 880px) {
  .srgh-devis { grid-template-columns: 1fr; }
}
.srgh-devis__card {
  background: var(--srgh-ink);
  border-radius: 10px;
  padding: clamp(24px, 3.4vw, 36px);
}
.srgh-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.srgh-field label {
  font: 700 12.5px/1 var(--srgh-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--srgh-muted);
}
.srgh-field input,
.srgh-field select,
.srgh-field textarea {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  color: var(--srgh-white);
  padding: 12px 14px;
  font: 500 15px/1.4 var(--srgh-body);
  min-height: 44px;
}
.srgh-field textarea { min-height: 110px; resize: vertical; }
.srgh-field select option { color: #111; }
.srgh-devis__card .srgh-btn { width: 100%; margin-top: 6px; }
.srgh-confirm { color: var(--srgh-white); }
.srgh-confirm__check { color: var(--srgh-cyan); }
.srgh-confirm__links { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.srgh-confirm__links a { color: var(--srgh-cyan); text-decoration: underline; }

/* ---------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------- */
.srgh-footer {
  background: var(--srgh-ink);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: clamp(32px, 4vw, 48px);
}
.srgh-footer__grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
}
.srgh-footer__grid nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.srgh-footer__grid nav a {
  color: var(--srgh-muted);
  text-decoration: none;
  font: 600 13px/1 var(--srgh-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.srgh-footer__bottom {
  padding-bottom: 24px;
  color: var(--srgh-muted);
  font-size: 13px;
}
.srgh-footer .srgh-led { margin-top: 0; }

/* ---------------------------------------------------------------------
   Filter grid utility (sections with heading + lede + link)
   ------------------------------------------------------------------- */
.srgh-panel-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--srgh-cyan);
  font: 700 14px/1 var(--srgh-heading);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}



/* ------------------------------------------------------------------
   Conversion fidèle de la maquette H dans un widget Elementor
   ------------------------------------------------------------------ */
.srgh-page {
  --srgh-shell: 2400px;
  overflow-x: clip;
  background: var(--srgh-ink);
  color: var(--srgh-white);
}

.srgh-page--consoles {
  --srgh-consoles-content: clamp(1120px, 61.8vw, var(--srgh-shell));
  --srgh-consoles-minor: 38.2%;
  --srgh-console-space-1: 16px;
  --srgh-console-space-2: 26px;
  --srgh-console-space-3: 42px;
  --srgh-console-space-4: 68px;
  font-size: 18px;
}

.srgh-page .srgh-shell {
  width: min(calc(100% - clamp(32px, 5vw, 96px)), var(--srgh-shell));
}

.srgh-page > main,
.srgh-page .srgh-main { width: 100%; }
.srgh-page [hidden] { display: none !important; }
.srgh-page .srgh-field input,
.srgh-page .srgh-field select,
.srgh-page .srgh-field textarea { width: 100%; }

/* Verrouillage des CTA contre les styles globaux d'Elementor/WordPress. */
.srgh-page .srgh-btn {
  border: 1px solid var(--srgh-yellow) !important;
  border-radius: 0 !important;
  background: var(--srgh-yellow) !important;
  background-image: none !important;
  color: var(--srgh-ink) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.srgh-page .srgh-btn:hover {
  background: #ffe160 !important;
  color: var(--srgh-ink) !important;
}
.srgh-page .srgh-btn--ghost {
  border-color: rgba(255,255,255,.58) !important;
  background: transparent !important;
  color: var(--srgh-white) !important;
}
.srgh-page .srgh-btn--ghost:hover {
  border-color: var(--srgh-white) !important;
  background: rgba(255,255,255,.1) !important;
  color: var(--srgh-white) !important;
}
.srgh-page .srgh-btn--dark {
  border-color: var(--srgh-ink) !important;
  background: var(--srgh-ink) !important;
  color: var(--srgh-white) !important;
}
.srgh-page .srgh-btn--dark:hover {
  border-color: #1a2030 !important;
  background: #1a2030 !important;
  color: var(--srgh-white) !important;
}

/* Hero plus horizontal et typographie proportionnée à la planche desktop. */
.srgh-page .srgh-hero__inner {
  min-height: clamp(600px, 42vw, 1120px);
  padding-block: clamp(52px, 6vw, 92px);
}
.srgh-page .srgh-hero__body { max-width: min(61vw, 1120px); }
.srgh-page .srgh-hero__body h1 {
  font-size: clamp(48px, 4.45vw, 106px);
  max-width: none;
}
.srgh-page .srgh-title-line { display: block; }
.srgh-page .srgh-hero__sub {
  max-width: 820px;
  font-size: clamp(16px, 1.05vw, 22px);
}
.srgh-page--consoles .srgh-hero__body { max-width: min(61.8vw, 1240px); }
.srgh-page--consoles .srgh-hero__body h1 {
  font-size: clamp(56px, 4.7vw, 118px);
  line-height: 1.02;
}
.srgh-page--consoles .srgh-title-line { white-space: nowrap; }
.srgh-page--consoles .srgh-hero__sub {
  max-width: 880px;
  font-size: clamp(18px, 1.1vw, 24px);
  line-height: 1.58;
}
.srgh-page--consoles .srgh-hero__kanji { font-size: clamp(30px, 2.5vw, 48px); }
.srgh-page--consoles .srgh-hero__img {
  opacity: .84 !important;
  object-position: center 58%;
}
.srgh-page--consoles .srgh-hero .srgh-kicker {
  gap: var(--srgh-console-space-1);
  margin-bottom: var(--srgh-console-space-2);
  font-size: clamp(16px, 1vw, 20px) !important;
  line-height: 1 !important;
  letter-spacing: .16em !important;
}
.srgh-page--consoles .srgh-hero .srgh-kicker::before {
  width: clamp(34px, 2.4vw, 48px);
}
.srgh-page--consoles .srgh-hero__actions {
  gap: var(--srgh-console-space-1);
  margin-top: var(--srgh-console-space-3);
}
.srgh-page--consoles .srgh-hero__actions .srgh-btn {
  min-width: 310px;
  min-height: 68px !important;
  padding: 20px 36px !important;
  font-size: 18px !important;
  line-height: 1 !important;
}
.srgh-page .srgh-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5,9,25,.84) 0%, rgba(5,9,25,.52) 46%, rgba(5,9,25,.08) 84%, rgba(5,9,25,.02) 100%),
    rgba(12, 33, 120, .16);
}

/* Introduction Consoles : titre à gauche, texte à droite comme la maquette. */
.srgh-page--consoles .srgh-collection-intro .srgh-shell {
  width: min(calc(100% - 32px), var(--srgh-consoles-content));
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.42fr);
  align-items: start;
  gap: var(--srgh-console-space-4);
}
.srgh-page--consoles .srgh-collection-intro .srgh-h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 2.8vw, 52px);
  line-height: 1.04;
}
.srgh-page--consoles .srgh-collection-intro .srgh-lede {
  font-size: clamp(17px, 1.05vw, 19px);
  line-height: 1.65;
}
.srgh-page--consoles .srgh-collection-title__line {
  display: block;
  white-space: nowrap;
}
.srgh-page--consoles .srgh-collection-intro {
  padding-top: var(--srgh-console-space-3);
  padding-bottom: var(--srgh-console-space-2);
}
.srgh-page--consoles #srgh-consoles-collection {
  padding-top: var(--srgh-console-space-2);
  padding-bottom: var(--srgh-console-space-4);
}
.srgh-page--consoles #srgh-consoles-collection .srgh-shell,
.srgh-page--consoles .srgh-faq-section .srgh-shell,
.srgh-page--consoles .srgh-cta-band .srgh-shell {
  width: min(calc(100% - 32px), var(--srgh-consoles-content));
}

/* Filtres carrés et sobres, fidèles au style H de la planche. */
.srgh-page--consoles .srgh-filters {
  gap: 12px;
  margin-bottom: var(--srgh-console-space-2);
}
.srgh-page--consoles .srgh-filter {
  appearance: none;
  border: 1px solid rgba(255,255,255,.52) !important;
  border-radius: 0 !important;
  min-height: 46px;
  padding: 13px 22px;
  background: transparent !important;
  background-image: none !important;
  color: var(--srgh-white) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font: 700 clamp(14px, .9vw, 16px)/1 var(--srgh-heading) !important;
  letter-spacing: .08em !important;
}
.srgh-page--consoles .srgh-filter[aria-pressed="true"] {
  border: 1px solid var(--srgh-white) !important;
  background: var(--srgh-white) !important;
  color: var(--srgh-ink) !important;
}

/* Cartes aérées : quatre colonnes qui occupent réellement la largeur. */
.srgh-page--consoles .srgh-console-grid {
  gap: var(--srgh-console-space-1);
  background: transparent;
  border: 0;
}
.srgh-page--consoles .srgh-console-card {
  border: 1px solid rgba(255,255,255,.18);
  min-width: 0;
}
.srgh-page--consoles .srgh-console-card img {
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.srgh-page--consoles .srgh-console-card__body {
  padding: var(--srgh-console-space-1) var(--srgh-console-space-1) var(--srgh-console-space-2);
}
.srgh-page--consoles .srgh-console-card__kicker {
  font-size: clamp(13px, .82vw, 15px);
  line-height: 1.1;
}
.srgh-page--consoles .srgh-console-card h3 {
  font-size: clamp(20px, 1.35vw, 25px);
  line-height: 1.05;
}
.srgh-page--consoles .srgh-console-card p {
  font-size: clamp(15px, .95vw, 17px);
  line-height: 1.55;
}
.srgh-page--consoles .srgh-console-card--closing {
  border-style: dashed;
  min-height: 100%;
}
.srgh-page--consoles .srgh-console-card--closing p {
  color: var(--srgh-yellow);
  font-size: clamp(16px, 1vw, 18px);
  font-style: italic;
  text-transform: none;
}

.srgh-page--consoles .srgh-band__img {
  height: clamp(420px, 31vw, 760px);
}
.srgh-page--consoles .srgh-band__panel-inner {
  width: min(680px, var(--srgh-consoles-minor));
  margin-right: var(--srgh-console-space-4);
  padding: var(--srgh-console-space-3) var(--srgh-console-space-2);
}
.srgh-page--consoles .srgh-band__panel-inner h2 {
  font-size: clamp(32px, 2.7vw, 44px);
  line-height: 1.08;
  text-transform: none;
}
.srgh-page--consoles .srgh-band__panel-inner p {
  font-size: clamp(17px, 1.05vw, 19px);
  line-height: 1.58;
}

/* Bandeau Free-play / Tournoi / Découverte : proportions de la jaquette. */
.srgh-page--consoles .srgh-strip {
  width: min(100%, var(--srgh-consoles-content));
  margin-inline: auto;
}
.srgh-page--consoles .srgh-strip > div {
  min-height: 168px;
  padding: var(--srgh-console-space-3) var(--srgh-console-space-2);
}
.srgh-page--consoles .srgh-strip__num {
  margin-bottom: var(--srgh-console-space-1) !important;
  font-size: clamp(30px, 2.1vw, 38px) !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
}
.srgh-page--consoles .srgh-strip h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 1.35vw, 24px) !important;
  line-height: 1 !important;
}
.srgh-page--consoles .srgh-strip p {
  font-size: clamp(16px, 1vw, 18px) !important;
  line-height: 1.55 !important;
}

/* FAQ en lignes franches, sans cartes arrondies, comme sur la jaquette. */
.srgh-page--consoles .srgh-faq-section {
  padding-top: var(--srgh-console-space-3);
  padding-bottom: var(--srgh-console-space-4);
}
.srgh-page--consoles .srgh-faq-section .srgh-h2 {
  margin-bottom: var(--srgh-console-space-2);
  font-size: clamp(36px, 2.8vw, 52px);
  text-transform: none;
}
.srgh-page--consoles .srgh-faq {
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.srgh-page--consoles .srgh-faq details {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background: transparent;
}
.srgh-page--consoles .srgh-faq summary {
  padding: 20px 0;
  font-size: clamp(18px, 1.1vw, 20px);
  line-height: 1.45;
}
.srgh-page--consoles .srgh-faq summary::after { font-size: 22px; }
.srgh-page--consoles .srgh-faq p {
  padding-right: 42px;
  font-size: clamp(16px, 1vw, 18px);
}
.srgh-page--consoles .srgh-cta-band .srgh-h2 {
  font-size: clamp(36px, 2.8vw, 52px);
  line-height: 1.08;
}
.srgh-page--consoles .srgh-cta-band .srgh-lede {
  font-size: clamp(17px, 1.05vw, 19px);
}
.srgh-page--consoles .srgh-cta-band .srgh-btn { font-size: 18px !important; }

/* La maquette Consoles se termine par une bande CTA, sans faux formulaire. */
.srgh-page .srgh-cta-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.srgh-page .srgh-cta-simple .srgh-h2 {
  margin-bottom: 8px;
  text-transform: none;
}
.srgh-page .srgh-cta-simple .srgh-btn {
  flex: none;
  min-width: 220px;
}

/*
 * Intégration Elementor tablette.
 * Le mode responsive de l'éditeur peut conserver un conteneur à 50 % et
 * masquer le 100vw du widget. :has() limite la correction aux seuls parents
 * Elementor qui contiennent cette page Consoles.
 */
@media (max-width: 1024px) {
  body .elementor-element:has(#srgh-consoles-widget) {
    --width: 100% !important;
    --content-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    align-self: stretch !important;
    overflow: visible !important;
  }
  body .elementor-widget-html:has(#srgh-consoles-widget) > .elementor-widget-container,
  body .elementor-widget-container:has(> #srgh-consoles-widget) {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .srgh-page#srgh-consoles-widget {
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    transform: none !important;
  }
  .srgh-page--consoles .srgh-console-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .srgh-page--consoles .srgh-collection-intro .srgh-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .srgh-page--consoles .srgh-hero__body { max-width: 900px; }
  .srgh-page--consoles .srgh-hero__sub { font-size: clamp(17px, 2.3vw, 21px); }
  .srgh-page--consoles .srgh-hero__actions .srgh-btn { font-size: 17px !important; }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .srgh-page--consoles .srgh-strip--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .srgh-page--consoles .srgh-strip > div {
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 0;
  }
  .srgh-page--consoles .srgh-strip > div:last-child { border-right: 0; }
  .srgh-page--consoles .srgh-band__panel-inner {
    width: 61.8%;
    margin-right: var(--srgh-console-space-2);
  }
}

@media (max-width: 960px) {
  .srgh-page { --srgh-shell: 100%; }
  .srgh-page .srgh-hero__body { max-width: 760px; }
  .srgh-page .srgh-hero__body h1 { font-size: clamp(40px, 8vw, 68px); }
  .srgh-page--consoles .srgh-hero__body h1 { font-size: clamp(44px, 8vw, 70px); }
  .srgh-page--consoles .srgh-collection-intro .srgh-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .srgh-page .srgh-shell { width: min(calc(100% - 32px), var(--srgh-shell)); }
  .srgh-page--consoles .srgh-console-grid { grid-template-columns: 1fr !important; }
  .srgh-page--consoles .srgh-collection-title__line { white-space: normal; }
  .srgh-page--consoles .srgh-title-line { white-space: normal; }
  .srgh-page--consoles .srgh-hero__body { max-width: 100%; }
  .srgh-page--consoles .srgh-hero__actions .srgh-btn { min-width: 0; }
  .srgh-page--consoles .srgh-band__panel-inner {
    width: 100%;
    margin: 0;
  }
  .srgh-page .srgh-hero__inner {
    min-height: 560px;
    align-items: flex-end;
    padding-block: 52px;
  }
  .srgh-page .srgh-hero__body h1 { font-size: clamp(38px, 11vw, 54px); }
  .srgh-page--consoles .srgh-hero__body h1 { font-size: clamp(42px, 12vw, 60px); }
  .srgh-page .srgh-hero__actions { gap: 10px; }
  .srgh-page .srgh-hero__actions .srgh-btn { width: 100%; }
  .srgh-page .srgh-cta-simple { align-items: stretch; flex-direction: column; }
  .srgh-page .srgh-cta-simple .srgh-btn { width: 100%; }
}

/* ------------------------------------------------------------------
   Hooks administrables ajoutés par SRGCC.
   Le préréglage validated-h conserve les règles ci-dessus telles quelles.
   ------------------------------------------------------------------ */
.srgh-page--consoles .srgh-hero__img {
  opacity: var(--srgh-hero-opacity, .84) !important;
  object-position: var(--srgh-hero-x, 50%) var(--srgh-hero-y, 58%);
}

.srgh-page--consoles .srgh-focal-image {
  object-position: var(--srgh-image-x, 50%) var(--srgh-image-y, 50%);
}

.srgh-page .text-blue { color: var(--srgh-blue); }

.srgh-page[data-srgh-style="validated-h"] .srgh-main > .srgh-led {
  height: 1.5px;
  background: linear-gradient(90deg, var(--srgh-cyan), var(--srgh-violet), var(--srgh-magenta));
  background-size: 200% 100%;
}

.srgh-page[data-srgh-style="custom"] {
  font-size: var(--srgh-body-size, 16px);
}

.srgh-page[data-srgh-style="custom"] .srgh-lede {
  font-size: var(--srgh-body-size, 16px);
}

.srgh-page[data-srgh-style="custom"] .srgh-h2 {
  font-size: clamp(28px, 3.4vw, var(--srgh-h2-size, 42px));
}

.srgh-page[data-srgh-style="custom"] .srgh-console-card p {
  font-size: max(13px, calc(var(--srgh-body-size, 16px) - 2px));
}

@media (min-width: 641px) {
  .srgh-page[data-srgh-style="custom"] .srgh-hero__body h1 {
    font-size: clamp(48px, 4.45vw, var(--srgh-h1-size, 106px));
  }
}

@media (max-width: 640px) {
  .srgh-page--consoles .srgh-hero__img {
    object-position: var(--srgh-hero-x-mobile, var(--srgh-hero-x, 50%)) var(--srgh-hero-y-mobile, var(--srgh-hero-y, 58%));
  }

  .srgh-page--consoles .srgh-focal-image {
    object-position: var(--srgh-image-x-mobile, var(--srgh-image-x, 50%)) var(--srgh-image-y-mobile, var(--srgh-image-y, 50%));
  }
}

/* ------------------------------------------------------------------
   Protection contre les couleurs globales du thème et d’Elementor.
   Certaines configurations imposent une couleur H1/H3 en !important.
   ------------------------------------------------------------------ */
.srgh-page--consoles .srgh-hero__body h1,
.srgh-page--consoles .srgh-collection-intro .srgh-h2,
.srgh-page--consoles .srgh-console-card h3,
.srgh-page--consoles .srgh-band__panel-inner h2,
.srgh-page--consoles .srgh-strip h3,
.srgh-page--consoles .srgh-faq-section .srgh-h2,
.srgh-page--consoles .srgh-faq summary {
  color: #f7f8fc !important;
}

.srgh-page--consoles .text-yellow,
.srgh-page--consoles .srgh-console-card--closing p {
  color: #ffd52a !important;
}

.srgh-page--consoles .text-cyan { color: #22d3e6 !important; }
.srgh-page--consoles .text-violet { color: #7c3aed !important; }
.srgh-page--consoles .text-magenta { color: #ff2ca8 !important; }
.srgh-page--consoles .text-blue { color: #2e6bff !important; }

.srgh-page--consoles .srgh-cta-band .srgh-h2,
.srgh-page--consoles .srgh-cta-band h2 {
  color: #080b13 !important;
}

/* En mode personnalisé, les mêmes protections utilisent les couleurs choisies. */
.srgh-page--consoles[data-srgh-style="custom"] .srgh-hero__body h1,
.srgh-page--consoles[data-srgh-style="custom"] .srgh-collection-intro .srgh-h2,
.srgh-page--consoles[data-srgh-style="custom"] .srgh-console-card h3,
.srgh-page--consoles[data-srgh-style="custom"] .srgh-band__panel-inner h2,
.srgh-page--consoles[data-srgh-style="custom"] .srgh-strip h3,
.srgh-page--consoles[data-srgh-style="custom"] .srgh-faq-section .srgh-h2,
.srgh-page--consoles[data-srgh-style="custom"] .srgh-faq summary {
  color: var(--srgh-white) !important;
}

.srgh-page--consoles[data-srgh-style="custom"] .text-yellow,
.srgh-page--consoles[data-srgh-style="custom"] .srgh-console-card--closing p {
  color: var(--srgh-yellow) !important;
}

.srgh-page--consoles[data-srgh-style="custom"] .text-cyan { color: var(--srgh-cyan) !important; }
.srgh-page--consoles[data-srgh-style="custom"] .text-violet { color: var(--srgh-violet) !important; }
.srgh-page--consoles[data-srgh-style="custom"] .text-magenta { color: var(--srgh-magenta) !important; }
.srgh-page--consoles[data-srgh-style="custom"] .text-blue { color: var(--srgh-blue) !important; }

.srgh-page--consoles[data-srgh-style="custom"] .srgh-cta-band .srgh-h2,
.srgh-page--consoles[data-srgh-style="custom"] .srgh-cta-band h2 {
  color: var(--srgh-ink) !important;
}
