/* Pages intérieures — Moody Premium */

.page-inner .page-hero {
  padding: calc(var(--topbar) + clamp(3rem, 8vw, 5.5rem)) var(--pad-x) clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 169, 98, 0.12), transparent 60%),
    linear-gradient(180deg, #0c0c0c 0%, var(--bg) 100%);
  border-bottom: var(--line) solid var(--border);
}

.page-hero__inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  font-weight: var(--display-weight);
  line-height: var(--heading-lh);
  letter-spacing: var(--heading-track);
  margin: 0.35rem 0 0.75rem;
}

.page-hero__lead {
  color: var(--text-muted);
  font-size: var(--type-lead);
  line-height: var(--lead-lh);
  max-width: 36rem;
  margin: 0 auto;
}

.page-tabs {
  display: inline-flex;
  gap: 0.35rem;
  margin-top: 1.75rem;
  padding: 0.3rem;
  border: var(--line) solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.page-tabs__link {
  padding: 0.55rem 1.1rem;
  font-size: var(--type-chip);
  font-weight: 500;
  color: var(--text-dim);
  border-radius: calc(var(--radius) - 1px);
  transition: color 0.25s, background 0.25s;
}

.page-tabs__link:hover {
  color: var(--gold-light);
}

.page-tabs__link.is-active {
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* Tarifs */
.tariff__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: var(--line) solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.tariff--narrow {
  max-width: 40rem;
  margin-inline: auto;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--type-body-sm);
  min-width: 36rem;
}

.tariff-table--simple {
  min-width: 0;
  border: var(--line) solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.tariff-table th,
.tariff-table td {
  padding: 0.85rem 1rem;
  border-bottom: var(--line) solid var(--border);
  text-align: right;
  white-space: nowrap;
}

.tariff-table thead th {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 98, 0.06);
}

.tariff-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--text);
  white-space: normal;
  min-width: 12rem;
}

.tariff-table td {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.tariff-table tbody tr:last-child th,
.tariff-table tbody tr:last-child td {
  border-bottom: none;
}

.tariff-table tbody tr:hover td,
.tariff-table tbody tr:hover th {
  background: rgba(201, 169, 98, 0.04);
}

.tariff__note,
.tariff-note-box {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.tariff-note-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-left: 2px solid var(--gold-dim);
  background: rgba(201, 169, 98, 0.05);
}

.tariff-note-box p + p {
  margin-top: 0.5rem;
}

.tariff-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .tariff-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tariff-card {
  padding: 1.5rem 1.35rem;
  border: var(--line) solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.tariff-card__title {
  font-family: var(--font-display);
  font-size: var(--type-h3);
  font-weight: var(--display-weight);
  margin-bottom: 0.65rem;
  color: var(--gold-light);
}

.tariff-card p {
  color: var(--text-muted);
  font-size: var(--type-body-sm);
}

/* Videos page */
.video-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: var(--line) solid var(--border);
  aspect-ratio: 16 / 10;
  background: #111;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.video-card:hover img {
  transform: scale(1.04);
}

.video-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 3.25rem;
  height: 3.25rem;
  margin: -1.625rem 0 0 -1.625rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.55);
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(6px);
}

.video-card__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.45rem 0 0.45rem 0.75rem;
  border-color: transparent transparent transparent var(--gold-light);
}

.video-card__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

/* Contact page extras */
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  text-align: center;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer__nav a:hover {
  color: var(--gold-light);
}

.drawer__cta {
  margin-top: 0.5rem;
  color: var(--gold-light) !important;
  font-weight: 600;
}

.section__lead {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: var(--type-lead);
}
