/* ======================================================
   HLJR Mockups — shared base
   ====================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--ff-body, system-ui, sans-serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text, #18181b);
  background: var(--c-bg, #ffffff);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--c-selection, rgba(0,0,0,0.85)); color: var(--c-selection-text, #fff); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Tabular numerics for dates / prices */
.num { font-variant-numeric: tabular-nums lining-nums; }

/* Visually hidden */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Concept badge (top-left link back to concept switcher, used on every concept page) */
.concept-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--ff-body, system-ui, sans-serif);
  pointer-events: none;
}
.concept-bar > * { pointer-events: auto; }
.concept-bar a { padding: 6px 10px; border-radius: 999px; white-space: nowrap; }
.concept-bar > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
@media (max-width: 640px) {
  .concept-bar { padding: 10px 14px; font-size: 10px; letter-spacing: 0.06em; }
  .concept-bar a { padding: 5px 8px; }
  .concept-bar > span { display: none; }
}

/* Smooth focus ring */
:focus-visible {
  outline: 2px solid var(--c-focus, currentColor);
  outline-offset: 3px;
}

/* Official uploaded logo treatment for the three concept studies */
.logo-mark.logo-photo {
  width: 58px !important;
  height: 50px !important;
  border-radius: 18px !important;
  display: grid !important;
  place-items: center !important;
  padding: 4px !important;
  overflow: hidden !important;
  background: radial-gradient(circle at 50% 10%, #fff, #fff9ee 62%, #e6cf95 100%) !important;
  border: 1px solid rgba(196,164,102,.72) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 12px 30px rgba(0,0,0,.16) !important;
}
.logo-mark.logo-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: transparent !important;
}
