/* ==========================================================================
   MyHotelAuditor — Brand tokens
   Transcribed verbatim from myhotelauditor_stylesheet_platform_control.html
   (Style Sheet — Platform, v1 · August 2026 · Control build).
   Do not introduce colors that are not in this file.
   ========================================================================== */

:root {
  /* --- The Cluster, completed ------------------------------------------ */
  --pf-white: #FFFFFF;        /* Ground & cards        */
  --pf-tintband: #F8FAFC;     /* Section tint          */
  --pf-tint: #F8FAFC;         /* alias used in the wiring block */
  --pf-blue50: #EFF6FF;       /* Blue tint · pills, callouts */
  --pf-blue100: #DBEAFE;      /* Blue tint border      */
  --pf-blue: #2563EB;         /* Primary · CTAs, links */
  --pf-blue-deep: #1D4ED8;    /* Primary hover         */
  --pf-text: #0F172A;         /* Text                  */
  --pf-muted: #475569;        /* Muted text            */
  --pf-border: #E2E8F0;       /* Border                */
  --pf-border-strong: #CBD5E1;/* Border strong         */
  --pf-red: #DC2626;          /* Critical              */
  --pf-green: #16A34A;        /* Pass                  */

  /* --- Type ------------------------------------------------------------- */
  --sans: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font: var(--sans);

  /* --- Elevation -------------------------------------------------------- */
  --shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .10);
  --shadow-lift: 0 2px 6px rgba(15, 23, 42, .07), 0 8px 24px rgba(15, 23, 42, .10);

  /* --- Rhythm ----------------------------------------------------------- */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --ease: 180ms ease;
  --wrap: 1080px;
  --wrap-wide: 1200px;
}

/* --------------------------------------------------------------------------
   Type scale — Platform sheet, "Open Sans, four weights, every job"
   Display 38–52/300 · H1 28–32/700 · H2 20–22/700 · Body 15–16/400
   Buttons 14/600 · Labels 11.5–12/600 uppercase .05em · Data 13.5–14/600 tabular
   -------------------------------------------------------------------------- */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--pf-white);
  color: var(--pf-text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }

a { color: var(--pf-blue); text-decoration: none; }
a:hover { color: var(--pf-blue-deep); text-decoration: underline; }

img, svg, video { max-width: 100%; display: block; }

::selection { background: var(--pf-blue100); color: var(--pf-text); }

:focus-visible {
  outline: 2px solid var(--pf-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Primitives ---------------------------------------------------------- */

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 40px; }

.kicker {
  font-weight: 600; font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--pf-blue);
}

.label {
  font-weight: 600; font-size: 11.5px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--pf-muted);
}

.display { font-weight: 300; font-size: clamp(30px, 5vw, 52px); line-height: 1.14; letter-spacing: -.01em; }
.h1 { font-weight: 700; font-size: clamp(24px, 3.2vw, 32px); }
.h2 { font-weight: 700; font-size: clamp(19px, 2.4vw, 22px); }
.lede { font-size: 17px; color: var(--pf-muted); line-height: 1.7; }
.muted { color: var(--pf-muted); }
.num { font-variant-numeric: tabular-nums; font-weight: 600; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 12.5px; color: var(--pf-blue-deep);
  background: var(--pf-blue50); border: 1px solid var(--pf-blue100);
  border-radius: var(--radius-pill); padding: 5px 14px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  color: #fff; background: var(--pf-blue);
  padding: 11px 22px; border: 1px solid var(--pf-blue);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.btn:hover { background: var(--pf-blue-deep); border-color: var(--pf-blue-deep); color: #fff; text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

.btn2 {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  color: var(--pf-text); background: #fff;
  border: 1px solid var(--pf-border-strong);
  padding: 10px 21px; border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.btn2:hover { border-color: var(--pf-blue); color: var(--pf-text); background: var(--pf-blue50); text-decoration: none; }
.btn2:active { transform: translateY(1px); }

.btn-lg { font-size: 15px; padding: 14px 28px; }

.card {
  background: var(--pf-white);
  border: 1px solid var(--pf-border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
}

.tintband {
  background: var(--pf-tintband);
  border: 1px solid var(--pf-border);
  border-radius: var(--radius);
  padding: 26px 30px;
}

.note {
  font-size: 14px; color: var(--pf-muted); line-height: 1.7;
  padding: 18px 22px; background: var(--pf-blue50);
  border: 1px solid var(--pf-blue100); border-radius: var(--radius);
}
.note strong { color: var(--pf-text); font-weight: 700; font-size: 13px; }

.flag {
  display: inline-block; font-weight: 700; font-size: 11px; letter-spacing: .03em;
  color: #fff; background: var(--pf-red); border-radius: 6px; padding: 3px 10px;
}
.pass { font-weight: 600; color: var(--pf-green); }
.watch { font-weight: 600; color: var(--pf-blue); }

table { border-collapse: collapse; width: 100%; }
th {
  font-weight: 600; font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--pf-muted); text-align: left;
  padding: 9px 14px 9px 0; border-bottom: 1px solid var(--pf-border-strong);
}
td { font-size: 14px; padding: 11px 14px 11px 0; border-bottom: 1px solid var(--pf-border); vertical-align: middle; }

.icn {
  width: 38px; height: 38px; border-radius: 9px; background: var(--pf-blue50);
  display: flex; align-items: center; justify-content: center; flex: none;
}

hr { border: 0; border-top: 1px solid var(--pf-border); }

@media (max-width: 820px) {
  .wrap, .wrap-wide { padding: 0 20px; }
}
