/* OrnamentTracker design system v1 — ot-content-ascent 2026-08-01
   Rankin/Bass-INSPIRED mid-century stop-motion warmth. NO cream (fact 2949466).
   Single source of design tokens. Light mode primary. */

:root {
  /* Palette — cool snow whites (never cream), deep pine, berry red, gold, midnight */
  --snow: #F8FAFB;
  --snow-2: #EEF3F5;
  --pine-900: #0B2E23;
  --pine-700: #14523D;
  --pine-500: #1E6E4E;
  --berry-700: #A3202F;
  --berry-600: #C22F3E;
  --gold-500: #D9A521;
  --gold-300: #EFC65E;
  --midnight-900: #0E1B2E;
  --midnight-700: #1B3050;
  --ink: #1C2733;
  --ink-soft: #46586A;
  --line: #D8E2E8;

  --font-display: "Iowan Old Style", "Palatino", "Georgia", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --shadow: 0 2px 10px rgba(14, 27, 46, 0.08);
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--snow);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

/* ---------- chrome ---------- */
.ot-header {
  background: var(--pine-900);
  color: #fff;
  border-bottom: 4px solid var(--gold-500);
}
.ot-header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.ot-wordmark {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: #fff; text-decoration: none; letter-spacing: 0.2px;
}
.ot-wordmark .tail { color: var(--gold-300); }
.ot-nav { margin-left: auto; }
.ot-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; flex-wrap: wrap; }
.ot-nav a {
  display: block; padding: 7px 11px; border-radius: 8px;
  color: #E9F2EE; text-decoration: none; font-size: 0.92rem; font-weight: 600;
}
.ot-nav a:hover, .ot-nav a:focus-visible { background: var(--pine-700); color: #fff; }
.ot-nav a[aria-current="page"] { background: var(--pine-700); color: var(--gold-300); }
.ot-nav a.santa-link { color: var(--gold-300); }

/* ---------- hero / page head ---------- */
.ot-hero {
  background: linear-gradient(180deg, var(--pine-900) 0%, var(--pine-700) 100%);
  color: #fff; padding: 56px 20px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.ot-hero.midnight { background: linear-gradient(180deg, var(--midnight-900) 0%, var(--midnight-700) 100%); }
.ot-hero h1 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin: 0 0 14px; line-height: 1.15;
}
.ot-hero h1 em { color: var(--gold-300); font-style: normal; }
.ot-hero p.lede { max-width: 660px; margin: 0 auto; font-size: 1.08rem; color: #DCE9E3; }
.ot-hero .art { margin-bottom: 18px; }

/* ---------- layout ---------- */
.ot-main { max-width: var(--maxw); margin: 0 auto; padding: 40px 20px 64px; }
.ot-prose { max-width: 720px; }
.ot-prose h2 { font-family: var(--font-display); font-size: 1.6rem; margin: 2.2em 0 0.5em; color: var(--pine-900); }
.ot-prose h3 { font-size: 1.15rem; margin: 1.8em 0 0.4em; color: var(--midnight-700); }
.ot-prose a { color: var(--berry-700); }
.ot-prose .cite { font-size: 0.78em; vertical-align: super; color: var(--pine-500); text-decoration: none; font-weight: 700; }
.ot-kicker {
  display: inline-block; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--berry-600); margin-bottom: 8px;
}

/* callouts */
.ot-note, .ot-warn {
  border-radius: var(--radius); padding: 16px 18px; margin: 1.4em 0; font-size: 0.97rem;
}
.ot-note { background: #E8F1ED; border-left: 5px solid var(--pine-500); }
.ot-warn { background: #FBEAEA; border-left: 5px solid var(--berry-600); }
.ot-note b:first-child, .ot-warn b:first-child { color: var(--pine-900); }

/* ---------- cards ---------- */
.ot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; margin: 26px 0; }
.ot-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 8px;
}
.ot-card h3 { margin: 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--pine-900); }
.ot-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.ot-card a.cta { margin-top: auto; color: var(--berry-700); font-weight: 700; text-decoration: none; font-size: 0.95rem; }
.ot-card a.cta:hover { text-decoration: underline; }
.ot-card .badge {
  align-self: flex-start; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--midnight-700); background: var(--snow-2);
  border-radius: 999px; padding: 3px 10px;
}

/* ---------- commerce rail (eBay live; other rails designed-dark) ---------- */
.ot-rail { background: var(--snow-2); border-radius: var(--radius); padding: 26px 22px; margin: 40px 0 8px; }
.ot-rail h2 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 4px; color: var(--pine-900); }
.ot-rail p.rail-sub { margin: 0 0 16px; color: var(--ink-soft); font-size: 0.92rem; }
.ot-rail-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.ot-rail-item {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.ot-rail-item:hover { border-color: var(--pine-500); }
.ot-rail-item .go { color: var(--berry-600); font-weight: 800; }
.ot-rail .disclosure { margin-top: 14px; font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- sources ---------- */
.ot-sources { border-top: 2px solid var(--line); margin-top: 48px; padding-top: 18px; font-size: 0.9rem; }
.ot-sources h2 { font-size: 1.05rem; color: var(--midnight-700); margin: 0 0 10px; }
.ot-sources ol { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.ot-sources li { margin-bottom: 6px; }

/* ---------- footer ---------- */
.ot-footer { background: var(--midnight-900); color: #C9D6E4; margin-top: 56px; }
.ot-footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 34px 20px; }
.ot-footer a { color: #E9F2EE; text-decoration: none; }
.ot-footer a:hover { text-decoration: underline; }
.ot-footer .cols { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 20px; }
.ot-footer ul { list-style: none; padding: 0; margin: 8px 0 0; font-size: 0.92rem; }
.ot-footer li { margin-bottom: 6px; }
.ot-footer .foot-head { font-weight: 800; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-300); }
.ot-footer .fineprint { font-size: 0.8rem; color: #8FA3B8; border-top: 1px solid #22344E; padding-top: 16px; }

/* ---------- santa page ---------- */
.santa-stage { text-align: center; padding: 12px 0 0; }
.santa-status-pill {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--pine-900);
  border-radius: 999px; padding: 8px 18px; font-weight: 800; font-size: 0.95rem; box-shadow: var(--shadow);
}
.santa-status-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pine-500); }
.countdown { display: flex; gap: 12px; justify-content: center; margin: 26px 0; flex-wrap: wrap; }
.cd-cell { background: #fff; border-radius: var(--radius); padding: 14px 18px; min-width: 86px; box-shadow: var(--shadow); }
.cd-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--berry-700); }
.cd-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.workshop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin: 30px 0; text-align: left; }

/* ---------- utility ---------- */
.center { text-align: center; }
.ot-btn {
  display: inline-block; background: var(--berry-600); color: #fff; font-weight: 800;
  padding: 12px 22px; border-radius: 999px; text-decoration: none; font-size: 0.98rem;
}
.ot-btn:hover { background: var(--berry-700); }
.ot-btn.gold { background: var(--gold-500); color: var(--midnight-900); }
.ot-btn.gold:hover { background: var(--gold-300); }
img { max-width: 100%; height: auto; }

@media (max-width: 720px) {
  .ot-nav ul { gap: 0; }
  .ot-nav a { padding: 6px 8px; font-size: 0.85rem; }
  .ot-hero { padding: 40px 16px 48px; }
}

/* ---------- From the Collection cards (ot-ornament-hero lane) ---------- */
.col-card {
  display: flex; gap: 20px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--gold-500);
  border-radius: var(--radius); padding: 18px 20px; margin: 1.6em 0; box-shadow: var(--shadow);
}
.col-card img { width: 190px; height: 190px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.col-card .col-kicker {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--berry-600); display: block; margin-bottom: 4px;
}
.col-card h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 1.1rem; color: var(--pine-900); }
.col-card p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
@media (max-width: 620px) { .col-card { flex-direction: column; align-items: flex-start; } .col-card img { width: 100%; height: auto; } }
