/* === REMAINING PAGES REDESIGN — SHARED v1 === */
.pg-rd {
  --rd-red: #E50914;
  --rd-ink: #0A0A0A;
  --rd-paper: #FFFFFF;
  --rd-soft: #F1F1F1;
  --rd-rule: rgba(10, 10, 10, 0.12);
  --rd-mute: rgba(10, 10, 10, 0.6);
}
.pg-rd .section-base,
.pg-rd .section-soft {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.pg-rd .section-base { background: var(--rd-paper); }
.pg-rd .section-soft { background: var(--rd-soft); }
.pg-rd .section-base + .section-base,
.pg-rd .section-soft + .section-soft { padding-top: 0; }
.pg-rd .page-header {
  position: relative;
  min-height: clamp(380px, 56vh, 560px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(2.5rem, 6vw, 4.5rem);
  text-align: left;
  background-color: var(--rd-ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pg-rd .page-header .page-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.35) 55%, rgba(10,10,10,0.78) 100%);
  z-index: 1;
}
.pg-rd .page-header .container { position: relative; z-index: 2; }
.pg-rd .page-header h1 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  max-width: 22ch;
}
.pg-rd .page-header p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  max-width: 56ch;
  margin: 0;
}
.pg-rd .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rd-red);
  margin-bottom: 1rem;
}
.pg-rd .rd-section-title {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--rd-ink);
  margin: 0 0 1rem;
  font-weight: 600;
}
.pg-rd .rd-lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--rd-ink);
  max-width: 64ch;
  margin: 0 0 1.5rem;
}
.pg-rd .rd-muted {
  color: var(--rd-mute);
  font-size: 0.95rem;
  line-height: 1.6;
}
.pg-rd .rd-prose-max { max-width: 64ch; }
.pg-rd .rd-section-head { margin-bottom: 1.5rem; }
.pg-rd .rd-pricetable-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.pg-rd .rd-pricetable-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--rd-rule);
}
.pg-rd .rd-pricetable {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--rd-paper);
}
.pg-rd .rd-pricetable thead th {
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rd-mute);
  font-weight: 600;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--rd-rule);
}
.pg-rd .rd-pricetable tbody td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--rd-rule);
  color: var(--rd-ink);
  font-size: 1rem;
  vertical-align: middle;
}
.pg-rd .rd-pricetable tbody tr:last-child td { border-bottom: 0; }
.pg-rd .rd-pricetable .rd-price {
  font-weight: 700;
  color: var(--rd-red);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pg-rd .rd-pricetable-hint {
  display: none;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rd-mute);
  text-align: right;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .pg-rd .rd-pricetable-hint { display: block; }
}
.pg-rd .rd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.pg-rd .rd-split--reverse > :first-child { order: 2; }
.pg-rd .rd-split .rd-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--rd-soft);
}
.pg-rd .rd-split .rd-media img,
.pg-rd .rd-split .rd-media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .pg-rd .rd-split { grid-template-columns: 1fr; }
  .pg-rd .rd-split--reverse > :first-child { order: 0; }
  .pg-rd .rd-split .rd-media { aspect-ratio: 16 / 10; }
}
.pg-rd .edit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.pg-rd .edit-list > li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: baseline;
  padding: clamp(1.25rem, 2vw, 1.75rem) 0;
  border-top: 1px solid var(--rd-rule);
}
.pg-rd .edit-list > li:last-child { border-bottom: 1px solid var(--rd-rule); }
.pg-rd .edit-list .edit-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--rd-red);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.pg-rd .edit-list .edit-title {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 600;
  color: var(--rd-ink);
  margin: 0;
  line-height: 1.25;
}
.pg-rd .rd-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pg-rd .rd-list > li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-top: 1px solid var(--rd-rule);
  color: var(--rd-ink);
  font-size: 1rem;
  line-height: 1.6;
}
.pg-rd .rd-list > li:last-child { border-bottom: 1px solid var(--rd-rule); }
.pg-rd .rd-list > li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.25rem;
  width: 0.75rem; height: 1px;
  background: var(--rd-red);
}
.pg-rd .rd-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 24px;
  background: var(--rd-red);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 0;
  border-radius: 0;
  transition: background 160ms ease;
}
.pg-rd .rd-cta:hover { background: var(--c-brand-hover); }
.pg-rd .rd-cta:focus-visible { outline: 2px solid var(--rd-red); outline-offset: 3px; }
.pg-rd .forfait2baies-cta-row { margin-top: 2rem; }
.pg-rd .forfait2baies-premium-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.pg-rd .forfait2baies-premium-gallery-item {
  overflow: hidden;
  background: var(--rd-soft);
}
.pg-rd .forfait2baies-gallery-img,
.pg-rd .forfait2baies-premium-gallery picture,
.pg-rd .forfait2baies-premium-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 768px) {
  .pg-rd .forfait2baies-premium-gallery { grid-template-columns: 1fr; }
}

.pg-rd .pg-map {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2rem;
}
.pg-rd .pg-map iframe { display: block; width: 100%; height: 100%; border: 0; }

.pg-rd .rd-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--rd-rule);
  margin: 2rem 0 0;
}
.pg-rd .rd-tabs .rd-tab {
  padding: 0.85rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--rd-ink);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
}
.pg-rd .rd-tabs .rd-tab:hover { color: var(--rd-red); }
.pg-rd .rd-tabs .rd-tab.is-active {
  color: var(--rd-red);
  border-bottom-color: var(--rd-red);
}

.pg-rd .rd-tier {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rd-rule);
}
.pg-rd .rd-tier:last-child { border-bottom: 0; }
.pg-rd .rd-tier .rd-tier__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rd-red);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.pg-rd .rd-tier .rd-tier__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 1rem;
  color: var(--rd-ink);
}
.pg-rd .rd-tier .rd-tier__body { margin: 0 0 1.25rem; line-height: 1.6; }
.pg-rd .rd-tier .rd-tier__table-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rd-ink);
  margin: 0 0 0.75rem;
}
.pg-rd .rd-tier .rd-pricetable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .pg-rd .rd-tier .rd-pricetable-grid { grid-template-columns: 1fr; }
}

.pg-rd .rd-package-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pg-rd .rd-package-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rd-rule);
}
.pg-rd .rd-package-list > li:last-child { border-bottom: 0; }
.pg-rd .rd-package-list .rd-package-eyebrow {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rd-red);
  font-weight: 600;
}
.pg-rd .rd-package-list .rd-package-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--rd-ink);
}
.pg-rd .rd-package-list .rd-package-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rd-ink);
  margin: 0;
  text-align: right;
}
.pg-rd .rd-package-list .rd-package-desc {
  grid-column: 1 / -1;
  margin: 0;
  color: #444;
  line-height: 1.55;
}

.pg-rd .rd-offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .pg-rd .rd-offers-grid { grid-template-columns: 1fr; }
}
.pg-rd .rd-offer-card {
  border: 1px solid var(--rd-rule);
  overflow: hidden;
  background: var(--rd-paper);
}
.pg-rd .rd-offer-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.pg-rd .rd-offer-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-rd .rd-offer-card__body { padding: 1.25rem; }
.pg-rd .rd-offer-card__body h2 { font-size: 1.15rem; margin: 0 0 0.5rem; }
.pg-rd .rd-offer-card__body .lead { font-size: 0.95rem; margin: 0 0 1rem; }

.pg-rd .contact-form-container { margin-top: 1.5rem; }

/* Events hub page */
.events-page {
  --pg-accent: var(--c-brand);
  --pg-ink: #0A0A0A;
  --pg-ink-soft: #444;
  --pg-rule: #E5E5E5;
  --pg-bg: #fff;
}
.events-page .events-hero {
  text-align: left;
  min-height: clamp(280px, 38vw, 420px);
  padding: clamp(4rem, 8vw, 7rem) 1.5rem clamp(3rem, 6vw, 5rem);
  background-size: cover;
  background-position: center;
}
.events-page .events-hero__scrim {
  background: linear-gradient(180deg, rgba(15,15,15,0.35) 0%, rgba(15,15,15,0.65) 100%);
}
.events-page .events-hero__content {
  max-width: 880px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.events-page .events-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 1rem;
  border-left: 3px solid var(--pg-accent);
  padding-left: 0.75rem;
  line-height: 1;
}
.events-page .events-hero h1 {
  text-shadow: none;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}
.events-page .events-hero p {
  text-shadow: none;
  max-width: 620px;
  opacity: 0.92;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
}
@media (max-width: 768px) {
  .events-page .events-hero,
  .events-page .events-hero__content { text-align: center; }
  .events-page .events-hero__eyebrow { border-left: 0; padding-left: 0; }
}
.events-page .section-divider { text-align: left; margin: clamp(3.5rem, 6vw, 6rem) 0 clamp(1.25rem, 2.5vw, 2rem); }
.events-page .section-divider::before { display: none; }
.events-page .section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--pg-ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  border-top: 1px solid var(--pg-rule);
  padding-top: 1.25rem;
}
.events-page .section-subtitle { color: var(--pg-ink-soft); margin-top: 0.5rem; max-width: 768px; }
.events-page .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--pg-rule);
  border-bottom: 1px solid var(--pg-rule);
}
.events-page .why-card {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--pg-rule);
  background: transparent;
  transition: background-color 0.2s ease;
}
.events-page .why-card:last-child { border-right: 0; }
.events-page .why-card:hover { background-color: color-mix(in srgb, var(--c-brand) 2.5%, transparent); }
.events-page .why-num {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pg-accent);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.events-page .why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pg-ink);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.events-page .why-desc { font-size: 0.95rem; line-height: 1.6; color: var(--pg-ink-soft); margin: 0; }
@media (max-width: 1024px) {
  .events-page .why-grid { grid-template-columns: repeat(2, 1fr); }
  .events-page .why-card:nth-child(2) { border-right: 0; }
  .events-page .why-card:nth-child(1),
  .events-page .why-card:nth-child(2) { border-bottom: 1px solid var(--pg-rule); }
}
@media (max-width: 480px) {
  .events-page .why-grid { grid-template-columns: 1fr; }
  .events-page .why-card { border-right: 0; border-bottom: 1px solid var(--pg-rule); }
  .events-page .why-card:last-child { border-bottom: 0; }
}
.events-page .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.events-page .promo-card {
  background: #fff;
  border: 1px solid var(--pg-rule);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.events-page .promo-card:hover { transform: translateY(-3px); border-color: var(--pg-ink); }
.events-page .promo-card .btn-primary { margin-top: 1rem; width: 100%; text-align: center; }
.events-page .promo-image { width: 100%; height: 240px; overflow: hidden; }
.events-page .promo-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.events-page .promo-card:hover .promo-image img { transform: scale(1.04); }
.events-page .promo-content { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.events-page .promo-title { margin: 0 0 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.events-page .promo-title .title-small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pg-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.events-page .promo-title .title-large {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pg-ink);
  line-height: 1.2;
}
.events-page .promo-description { color: var(--pg-ink-soft); font-size: 0.95rem; line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
  .events-page .promo-grid { grid-template-columns: 1fr; }
  .events-page .promo-image { height: 200px; }
}
.events-page .feature-block {
  box-shadow: none;
  border-radius: 0;
  border-top: 1px solid var(--pg-rule);
  border-bottom: 1px solid var(--pg-rule);
  background: transparent;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.events-page .feature-block h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 1.5rem;
  color: var(--pg-ink);
  font-weight: 700;
}
.events-page .info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: catering;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.events-page .info-list li {
  counter-increment: catering;
  padding: 1.1rem 1.5rem 1.1rem 3rem;
  border-bottom: 1px solid var(--pg-rule);
  border-right: 1px solid var(--pg-rule);
  position: relative;
  line-height: 1.5;
  color: var(--pg-ink);
  font-size: 0.98rem;
}
.events-page .info-list li::before {
  content: counter(catering, decimal-leading-zero);
  position: absolute;
  left: 0.5rem;
  top: 1.1rem;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  color: var(--pg-accent);
}
.events-page .info-list li:nth-child(2n) { border-right: 0; }
.events-page .info-list li:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 768px) {
  .events-page .info-list { grid-template-columns: 1fr; }
  .events-page .info-list li { border-right: 0; }
}
.events-page .cta-box {
  background: var(--pg-accent);
  border-radius: 4px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  text-align: center;
}
.events-page .cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.events-page .cta-box p { font-size: 1.05rem; margin-bottom: 1.75rem; opacity: 0.95; }
.events-page .cta-box .btn-primary {
  background: #fff;
  color: var(--pg-accent);
  border-radius: 2px;
  padding: 0.9rem 2rem;
  font-weight: 600;
}
.events-page .cta-box .btn-primary:hover { background: var(--pg-ink); color: #fff; transform: none; }
.events-page .content-section { background: var(--pg-bg); }
.events-page .lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
  color: var(--pg-ink);
  max-width: 760px;
  margin: 0 0 2rem;
}

/* Games page (moved from inline) */
.games-cta {
  display: inline-block;
  background: #E50914;
  color: #fff;
  border: 0;
  padding: 16px 32px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  box-shadow:
    0 8px 20px rgba(229, 9, 20, 0.32),
    0 2px 6px rgba(229, 9, 20, 0.18);
  transition: background 200ms ease, box-shadow 220ms ease, transform 220ms ease;
  position: relative;
}
.games-cta:hover {
  background: #B3060F;
  color: #fff;
  box-shadow:
    0 14px 32px rgba(229, 9, 20, 0.42),
    0 4px 10px rgba(229, 9, 20, 0.22);
  transform: translateY(-2px);
}
.games-cta:active { transform: translateY(0); }
.games-cta:focus-visible { outline: 2px solid #E50914; outline-offset: 3px; }

/* Same elevation treatment for .rd-cta everywhere (homepage, info, etc.) */
.pg-rd .rd-cta {
  box-shadow:
    0 8px 20px rgba(229, 9, 20, 0.32),
    0 2px 6px rgba(229, 9, 20, 0.18) !important;
  transition: background 200ms ease, box-shadow 220ms ease, transform 220ms ease !important;
}
.pg-rd .rd-cta:hover {
  box-shadow:
    0 14px 32px rgba(229, 9, 20, 0.42),
    0 4px 10px rgba(229, 9, 20, 0.22) !important;
  transform: translateY(-2px);
}
.pg-rd .rd-cta:active { transform: translateY(0); }

body .games-hero { position: relative; min-height: 52vh; display: flex; align-items: flex-end; overflow: hidden; padding-block: 0; }
.games-hero__media { position: absolute; inset: 0; z-index: 0; }
.games-hero__media picture,
.games-hero__media img,
.games-hero__media .page-hero-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.games-hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(115deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.2) 100%); }
.games-hero__inner { position: relative; z-index: 2; padding-top: 4rem; padding-bottom: 3rem; max-width: 1200px; }
.games-hero__eyebrow { display: block; color: #f2f2f2; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; }
.games-hero__rule { display: block; width: 40px; height: 1px; background: var(--c-brand); margin: 1rem 0 1.25rem; }
.games-hero__title { color: #fff; font-family: var(--font-display); font-weight: 500; font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.05; margin: 0; max-width: 768px; }
.games-intro { max-width: 720px; margin: 0 auto 3rem; text-align: center; padding: 0 1rem; }
.games-intro__text { font-size: 1.05rem; line-height: 1.7; color: #333; margin: 0 0 1.5rem; }

/* Steps — 2-card visual grid (no more floating gray "01/02" numbers) */
.games-steps {
    list-style: none;
    padding: 0;
    margin: 0 auto 3.5rem;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.games-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: transparent;
}
.games-step__num {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-brand);
    line-height: 1;
    margin: 0;
}
.games-step__num::before { content: 'Étape '; opacity: 0.65; }
[lang="en"] .games-step__num::before { content: 'Step '; }
.games-step__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 2px;
    background: #F1F1F1;
    position: relative;
}
.games-step__media picture { position: absolute; inset: 0; display: block; }
.games-step__img,
.games-step__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0;
    display: block;
    transition: transform 500ms ease;
}
.games-step:hover .games-step__media img { transform: scale(1.02); }
.games-step__body { padding: 0; }
.games-step__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.2;
    color: #0A0A0A;
    margin: 0 0 0.5rem;
}
.games-step__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}
/* === GAMES MODES — Editorial alternating spreads (image left/right) === */
.games-modes { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.games-modes__head { margin-bottom: 3rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.games-modes__eyebrow { display: block; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-brand); font-weight: 600; }
.games-modes__rule { display: block; width: 48px; height: 1px; background: var(--c-brand); }

/* Vertical stack of full-width spreads */
.games-modes__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: clamp(3.5rem, 7vw, 6rem); }

/* Each mode = 12-col grid, image takes 7, content 5, big gap. Direction alternates via modifier. */
.games-mode {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: 0;
    border: 0;                          /* kill old border-bottom */
}
.games-mode--right .games-mode__media { order: 2; }   /* flip image to right */
.games-mode--right .games-mode__body { order: 1; }

/* Image side — absolute positioning of img inside the aspect-ratio frame */
.games-mode__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 2px;
    background: #F1F1F1;          /* soft fallback while loading, not black */
}
.games-mode__media picture {
    position: absolute;
    inset: 0;
    display: block;
}
.games-mode__img,
.games-mode__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 600ms ease;
    display: block;
}
.games-mode:hover .games-mode__media img { transform: scale(1.02); }

/* Subtle red corner accent (asymmetric — sits over top-left of right-side image,
   top-right of left-side image, so feels editorial not symmetric AI) */
.games-mode__media::before {
    content: '';
    position: absolute;
    top: 0;
    width: 56px;
    height: 4px;
    background: var(--c-brand);
    z-index: 2;
}
.games-mode--left  .games-mode__media::before { right: 0; }
.games-mode--right .games-mode__media::before { left: 0; }

/* Body side */
.games-mode__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
}
.games-mode__tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-brand);
}
.games-mode__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #0A0A0A;
    margin: 0;
    text-transform: none;               /* removed uppercase — Cravend is loud enough */
}
.games-mode__sub {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #555;
    margin: 0 0 0.25rem;
    max-width: 38ch;
}
.games-mode__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
    max-width: 42ch;
}

/* Mobile / tablet — stack image above body */
@media (max-width: 900px) {
    .games-mode { grid-template-columns: 1fr; gap: 1.5rem; }
    .games-mode--right .games-mode__media { order: 0; }
    .games-mode--right .games-mode__body { order: 1; }
    .games-mode__media { aspect-ratio: 16 / 10; }
}
.games-skip {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 0;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(10, 10, 10, 0.18),
        0 6px 16px rgba(10, 10, 10, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.10);
    position: relative;
    transition: box-shadow 280ms ease, transform 280ms ease;
}
.games-skip:hover {
    box-shadow:
        0 32px 80px rgba(229, 9, 20, 0.18),
        0 10px 24px rgba(229, 9, 20, 0.10);
    transform: translateY(-3px);
}
/* Subtle red ambient glow under the card */
.games-skip::after {
    content: '';
    position: absolute;
    inset: auto 10% -16px 10%;
    height: 32px;
    background: radial-gradient(ellipse at center, rgba(229, 9, 20, 0.25), transparent 70%);
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
}
.games-skip__media { min-height: 480px; background-size: cover; background-position: center; }
.games-skip__body { padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.games-skip__eyebrow { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-brand); font-weight: 600; margin-bottom: 1rem; }
.games-skip__title { font-family: var(--font-display); font-weight: 500; font-size: 2rem; line-height: 1.15; color: #0A0A0A; margin: 0 0 1rem; }
.games-skip__desc { font-size: 1.05rem; line-height: 1.7; color: #333; max-width: 380px; margin: 0 0 2rem; }
@media (max-width: 1024px) {
  .games-steps { gap: 2.5rem; }
  .games-skip { grid-template-columns: 1fr; }
  .games-skip__media { min-height: 320px; }
  .games-skip__body { padding: 2.5rem 1.5rem; }
}
@media (max-width: 768px) {
  .games-hero { min-height: 60vh; }
  .games-hero__inner { padding-top: 4rem; padding-bottom: 3rem; }
  .games-steps { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
  .games-modes { margin-bottom: 3.5rem; }
  /* Owner 2026-06-02: was 56px image column + 1fr text → tiny image
     squashed next to text. On mobile, stack image-on-top + text-below
     with image full-width and a usable aspect ratio. */
  .games-mode {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.75rem 0;
  }
  .games-mode__media,
  .games-mode--right .games-mode__media {
    order: 0;
    aspect-ratio: 16 / 10;
    width: 100%;
  }
  .games-mode__body,
  .games-mode--right .games-mode__body {
    order: 1;
  }
  .games-skip { margin-bottom: 4rem; }
}

/* === END REMAINING PAGES REDESIGN === */
