/* RVTC-Website shared styles.
   Palette and type are governed by the brand board in docs/brand/ — see CLAUDE.md.
   navy #0B2D5B | blue #007BEB | orange #FF6A00 | Road Gray #5B6984 | white */
:root {
  --rvtc-navy: #0B2D5B;
  --rvtc-blue: #007BEB;
  --rvtc-orange: #FF6A00;
  --rvtc-road-gray: #5B6984;
  --rvtc-white: #FFFFFF;
  --rvtc-font-body: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; font-family: var(--rvtc-font-body); line-height: 1.5; }
img { display: block; max-width: 100%; height: auto; }

/* Placeholder page: inverted logo on solid navy (board sections 02 and 06). */
.placeholder {
  /* Clear space around the logo is one pin-head diameter, 12.5% of the logo's width. */
  --logo-width: min(34rem, 76vw);
  --logo-clear-space: calc(var(--logo-width) * 0.125);
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--rvtc-navy);
  color: var(--rvtc-white);
  color-scheme: dark;
}
.placeholder__main {
  padding: var(--logo-clear-space);
  text-align: center;
}
.placeholder__logo { margin: 0; }
.placeholder__logo img { width: var(--logo-width); margin-inline: auto; }
.placeholder__status {
  margin: var(--logo-clear-space) 0 0;
  font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
