/* Innerworks brand tokens + base. Mobile first: every visitor arrives by
   scanning a QR code with a phone. Desktop is the edge case. */

:root {
  --navy: #1d2e44;
  --navy-deep: #16243a;
  --gold: #b9892f;
  --gold-soft: #d4b06a;
  --paper: #ffffff;
  --warm: #f7f4ee;
  --ink: #2e3a48;
  --muted: #5d6b7c;
  --line: #e3ddd2;

  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Calibri, sans-serif;

  --wrap: 34rem;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--warm);
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

/* ---- masthead ---- */

.masthead { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #2a4061 100%); color: #fff; padding: 1.4rem 0 1.5rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand svg { flex: 0 0 auto; width: 2.1rem; height: 2.1rem; }

.wordmark { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1; }
.wordmark .w { color: var(--gold-soft); }

.masthead .tag { font-family: var(--serif); font-style: italic; font-size: 0.8rem; color: var(--gold-soft); margin-top: 0.5rem; }

/* ---- type ---- */

h1 { font-family: var(--serif); font-weight: 400; font-size: 1.75rem; line-height: 1.2; color: var(--navy); letter-spacing: -0.005em; }
h2 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; color: var(--navy); }

.kick { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

.lede { color: var(--muted); font-size: 1rem; margin-top: 0.6rem; }

a { color: var(--navy); text-decoration-color: var(--gold-soft); text-underline-offset: 2px; }

/* ---- buttons ---- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3rem; padding: 0.75rem 1.5rem;
  border: 0; border-radius: 2px; cursor: pointer;
  text-decoration: none; /* .btn is used on both <button> and <a> */
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--navy); color: #fff;
  transition: background 0.15s ease;
}
.btn:hover:not(:disabled) { background: var(--navy-deep); }
.btn:disabled { opacity: 0.38; cursor: not-allowed; }
.btn.ghost { background: transparent; color: var(--muted); font-weight: 400; min-height: 2.5rem; padding: 0.5rem 0.25rem; }
.btn.ghost:hover:not(:disabled) { background: transparent; color: var(--navy); }

/* ---- footer ---- */

.foot { border-top: 1px solid var(--line); margin-top: 3rem; padding: 1.5rem 0 2.5rem; font-size: 0.82rem; color: var(--muted); }
.foot .sig { font-family: var(--serif); font-style: italic; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
