/* =============================================================
   10 MINUTES HOTELS THEME — Pragmatik visual variant
   Loaded after base/components/animations CSS.
   Overrides CSS custom properties from tokens.css.
   ============================================================= */

:root {
  /* Colors moved to tokens.css (single source of truth).
     Nunito-tuned weights/tracking + UI variants live below. */
  --weight-medium:   600;
  --weight-semibold: 700;
  --weight-bold:     800;

  --tracking-tight:  -0.01em;
  --tracking-wide:    0.05em;
  --tracking-wider:   0.09em;
}

/* ── Primary button: dark text on lime green ─────────────── */
.btn-primary {
  color: #0D0D0D;
  border-radius: var(--radius-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
}
.btn-primary:hover { background: var(--color-accent-hover); color: #0D0D0D; }

/* ── Ghost button: green underline instead of currentColor ── */
.btn-ghost::after { background: var(--color-accent); }

/* ── Headlines: heavier weight ───────────────────────────── */
.display { font-weight: 900; }
h1, .h1  { font-weight: 900; }
h2, .h2  { font-weight: 800; }
h3, .h3  { font-weight: 700; }

.mirror__line { font-weight: 800; }
.outcomes__title { font-weight: 700; }

/* ── Proof cards: green top border ──────────────────────── */
.proof__card { border-top-color: var(--color-accent); }
.proof__card-result { background: var(--color-accent-light); }

/* ── Filter: + marker in green ───────────────────────────── */
/* (Already uses --color-accent, inherits from theme) */

/* ── Lang toggle ─────────────────────────────────────────── */
.lang-toggle:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* ── Nav link active underline ───────────────────────────── */
.nav__links a::after { background: var(--color-accent); }

/* ── Divider in accent ───────────────────────────────────── */
.divider { background: var(--color-accent); }

/* ── 10mH credential strip ───────────────────────────────── */
.media-strip {
  background: var(--color-surface);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: var(--space-6) 0;
}
.media-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.media-strip__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.media-strip__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.media-strip__logo img {
  height: 28px;
  width: auto;
}
.media-strip__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: var(--space-6);
  border-left: var(--border);
}
.media-strip__stat-value {
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}
.media-strip__stat-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .media-strip__stat { padding-left: var(--space-4); }
}

/* ── Dark-hero pages — nav inverted before scroll ────────── */
.page--dark-hero .nav:not(.nav--solid) {
  background: rgba(13,13,13,0.5);
  border-bottom-color: rgba(255,255,255,0.06);
}
.page--dark-hero .nav:not(.nav--solid) .nav__logo { color: #FFFFFF; }
.page--dark-hero .nav:not(.nav--solid) .nav__links a,
.page--dark-hero .nav:not(.nav--solid) .lang-toggle {
  color: rgba(255,255,255,0.8);
}
.page--dark-hero .nav:not(.nav--solid) .nav__burger span {
  background: #FFFFFF;
}

/* ── Nav logo — real brand SVG ───────────────────────────── */
.nav__logo-img { height: 30px; width: auto; display: block; }
.footer__logo-img { height: 28px; width: auto; display: block; }

/* Legacy SVG fallback (keep during transition) */
.nav__logo svg { height: 30px; width: auto; }
.footer__logo svg { height: 28px; width: auto; }

/* ── Dark-hero: invert logo to white ────────────────────── */
.page--dark-hero .nav:not(.nav--solid) .nav__logo-img {
  filter: brightness(0) invert(1);
}

/* ── Hero split — text left / dashboard right ────────────── */
.hero__split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__content { max-width: none; }

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* ── Hero image placeholder ──────────────────────────────── */
.hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1.5px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-placeholder::after {
  content: '+ Visual';
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-border);
}

@media (max-width: 1024px) {
  .hero__split {
    grid-template-columns: 1fr;
  }
  .hero__visual { display: none; }
}

/* ── Proof card visual placeholder ──────────────────────── */
.proof__card-visual {
  aspect-ratio: 16 / 9;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-5);
  border: 1.5px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.proof__card-visual::after {
  content: '+ Visual';
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-border);
}
