/* ═══════════════════════════════════════════════════════════════════
   VELDON - signature site v2
   Editorial paper/ink system. Light only. Lines do elevation, not shadows.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Fonts (self-hosted, latin + latin-ext) ─────────────────────── */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/newsreader-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/newsreader-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/newsreader-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/newsreader-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Switzer';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/switzer-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Switzer';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/switzer-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Switzer';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/switzer-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Martian Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/martian-mono-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Martian Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/martian-mono-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  --paper: #F7F4EF;
  --paper-deep: #EFEBE3;
  --ink: #161310;
  --ink-soft: #433D35;
  --ink-meta: #6B645A;
  --hairline: #DAD5CC;
  --hairline-strong: #C4BDB1;
  --oxblood: #722F37;
  --ink-block: #14110E;
  --paper-on-ink: #EDE8DE;
  --meta-on-ink: #8F887C;
  --hairline-on-ink: #2E2921;

  --serif: 'Newsreader', 'Georgia', serif;
  --sans: 'Switzer', 'Segoe UI', system-ui, sans-serif;
  --mono: 'Martian Mono', 'Consolas', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1320px;
  --cols: 12;
  --gutter: clamp(20px, 4vw, 48px);
  --colgap: clamp(16px, 2vw, 28px);
}

/* ── Reset (small, deliberate) ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scrollbar-color: var(--hairline-strong) var(--paper);
  scrollbar-width: thin;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--oxblood); color: var(--paper); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-weight: 500; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--hairline-strong); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-meta); }

/* ── Primitives ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.grid {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: var(--colgap);
}
.grid > * { min-width: 0; }

.meta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-meta);
}
.meta-num { color: var(--oxblood); }

.idx { font-family: var(--mono); font-size: 12px; }
.mark-construction svg, .contact-mark svg, .giant-wordmark svg, .error-mark svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Link system: quiet underline, oxblood on hover */
.lnk {
  text-decoration: underline;
  text-decoration-color: var(--hairline-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}
.lnk:hover { color: var(--oxblood); text-decoration-color: var(--oxblood); }

:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
}
.site-footer :focus-visible { outline-color: var(--paper-on-ink); }

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

html.nav-open { overflow: hidden; }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
}
.brand-link { display: inline-flex; align-items: center; color: var(--ink); }
.brand-link svg { height: 24px; width: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 36px); }
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.site-nav a:hover { color: var(--oxblood); }
.site-nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--oxblood);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}
.site-nav .nav-cta {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--hairline-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}
.site-nav .nav-cta:hover { text-decoration-color: var(--oxblood); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline-strong);
  color: var(--ink);
  padding: 9px 14px;
  cursor: pointer;
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  flex-direction: column;
  background: var(--paper);
  padding: 22px var(--gutter) 40px;
  overflow-y: auto;
}
.nav-overlay.open { display: flex; }
.nav-overlay .overlay-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
.nav-overlay nav {
  display: flex;
  flex-direction: column;
  margin-top: 8vh;
  gap: 6px;
}
.nav-overlay nav a {
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 52px);
  line-height: 1.25;
  text-decoration: none;
  padding-block: 6px;
  border-bottom: 1px solid var(--hairline);
}
.nav-overlay nav a:hover { color: var(--oxblood); }
.nav-overlay .overlay-foot { margin-top: auto; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero { padding-block: clamp(56px, 9vh, 110px) clamp(48px, 8vh, 96px); }
.hero .meta-line { margin-bottom: clamp(28px, 5vh, 56px); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 6.6vw, 95px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.hero h1 em, .manifesto p.big em { font-style: italic; font-weight: 480; }
.hero-foot {
  margin-top: clamp(40px, 7vh, 80px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 36px 56px;
}
.hero-lead { max-width: 42ch; color: var(--ink-soft); }
.hero-ctas { display: flex; gap: 28px; align-items: baseline; white-space: nowrap; }
.hero-ctas .primary { font-weight: 600; font-size: 18px; }

.hero-construct {
  margin-left: auto;
  border-left: 1px solid var(--hairline);
  padding-left: clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mark-construction { width: clamp(120px, 12vw, 176px); color: var(--hairline-strong); }
.mark-construction svg { overflow: visible; }
.mark-construction text {
  font-family: var(--mono);
  font-size: 4.4px;
  letter-spacing: 0.06em;
  fill: var(--ink-meta);
  stroke: none;
}
.hero-construct .caption { font-size: 10px; letter-spacing: 0.12em; }

/* Load-in reveal: lines rise from a masked row. Only when JS + motion OK.
   Content is fully visible by default; the .anim class opts in. */
@media (prefers-reduced-motion: no-preference) {
  html.anim .reveal-line { display: block; overflow: hidden; }
  html.anim .reveal-line > span {
    display: block;
    transform: translateY(112%);
    animation: rise 0.9s var(--ease) forwards;
    animation-delay: calc(var(--i, 0) * 90ms);
  }
  @keyframes rise { to { transform: translateY(0); } }
  html.anim .hero-foot,
  html.anim .hero .meta-line {
    opacity: 0;
    animation: fade 0.8s var(--ease) 0.42s forwards;
  }
  @keyframes fade { to { opacity: 1; } }
}

/* ── Section scaffolding ────────────────────────────────────────── */
.section { border-top: 1px solid var(--hairline); }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-block: 18px;
  border-bottom: 1px solid var(--hairline);
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.01em;
}
.section-head .meta:last-child { margin-left: auto; }
.section-body { padding-block: clamp(40px, 6vh, 72px) clamp(56px, 9vh, 110px); }

/* ── Manifesto ──────────────────────────────────────────────────── */
.manifesto { padding-block: clamp(64px, 12vh, 140px); }
.manifesto p.big {
  font-family: var(--serif);
  font-size: clamp(34px, 5.1vw, 74px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  font-weight: 500;
}
.manifesto p.big .l { display: block; }
.manifesto .after {
  margin-top: clamp(28px, 4vh, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 40px;
}
.manifesto .after p { color: var(--ink-soft); max-width: 42ch; }
.manifesto .after .lnk { font-weight: 600; color: var(--oxblood); text-decoration-color: var(--oxblood); }
.manifesto .after .lnk:hover { color: var(--ink); text-decoration-color: var(--ink); }

/* ── Reference (work index + asymmetric plates) ─────────────────── */
.work-list { border-bottom: 1px solid var(--hairline); }
.work-row {
  display: grid;
  grid-template-columns: 3.2em minmax(0, 1.2fr) minmax(0, 1fr) 5em;
  align-items: baseline;
  gap: var(--colgap);
  padding-block: 20px;
  border-top: 1px solid var(--hairline);
  text-decoration: none;
  transition: background-color 0.25s var(--ease);
}
.work-row:hover { background: color-mix(in srgb, var(--ink) 3%, transparent); }
.work-row .idx { color: var(--oxblood); }
.work-row .title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease);
}
.work-row:hover .title { color: var(--oxblood); }
.work-row .cat { justify-self: start; }
.work-row .year { justify-self: end; }

.plates { padding-top: clamp(48px, 7vh, 88px); row-gap: clamp(56px, 8vh, 96px); }
.plate { display: flex; flex-direction: column; gap: 14px; }
.plate-1 { grid-column: 1 / 9; }
.plate-2 { grid-column: 9 / 13; align-self: end; }
.plate-3 { grid-column: 5 / 13; }
.plate-quote {
  grid-column: 1 / 5;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plate figure {
  border: 1px solid var(--hairline-strong);
  background: var(--paper-deep);
}
.plate img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: top; }
.plate-2 img { aspect-ratio: 4 / 5; }
.plate-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.plate-head .name { font-family: var(--serif); font-size: 22px; }
.plate p.desc { color: var(--ink-soft); font-size: 15.5px; max-width: 52ch; }
.plate .visit { align-self: flex-start; font-size: 14px; font-weight: 500; }

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.pull-quote + figcaption { margin-top: 4px; }

/* ── Co děláme (pillars) ────────────────────────────────────────── */
.pillars { border-bottom: 1px solid var(--hairline); }
.pillar {
  display: grid;
  grid-template-columns: 3.2em minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--colgap);
  padding-block: clamp(24px, 3.5vh, 36px);
  border-top: 1px solid var(--hairline);
}
.pillar .idx { color: var(--ink-meta); padding-top: 6px; }
.pillar h3 { font-family: var(--serif); font-size: clamp(22px, 2.1vw, 28px); letter-spacing: -0.01em; }
.pillar p { color: var(--ink-soft); max-width: 58ch; }
.studio-note {
  margin-top: clamp(36px, 5vh, 56px);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  max-width: 30ch;
}

/* ── Kdo jsme ───────────────────────────────────────────────────── */
.people { border-bottom: 1px solid var(--hairline); }
.person {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr) auto;
  gap: var(--colgap);
  align-items: baseline;
  padding-block: clamp(22px, 3vh, 32px);
  border-top: 1px solid var(--hairline);
}
.person .name { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); }
.person p { color: var(--ink-soft); max-width: 58ch; }
.person .li-link { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--hairline-strong); padding-bottom: 2px; transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
.person .li-link:hover { color: var(--oxblood); border-color: var(--oxblood); }

/* ── Kontakt ────────────────────────────────────────────────────── */
.contact-body { padding-block: clamp(64px, 11vh, 130px); }
.contact-grid { align-items: end; }
.contact-main { grid-column: 1 / 10; display: flex; flex-direction: column; gap: 18px; }
.contact-mark {
  grid-column: 11 / 13;
  justify-self: end;
  width: clamp(44px, 4.5vw, 64px);
  color: var(--ink);
}
.mail-link {
  font-family: var(--serif);
  font-size: clamp(38px, 6.4vw, 92px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-decoration: none;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  border-bottom: 2px solid var(--hairline-strong);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.mail-link:hover { color: var(--oxblood); border-color: var(--oxblood); }

/* ── Footer (ink block) ─────────────────────────────────────────── */
.site-footer {
  background: var(--ink-block);
  color: var(--paper-on-ink);
  display: flex;
  flex-direction: column;
  min-height: 88vh;
}
.site-footer .foot-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 40px;
  padding-block: 30px;
  border-bottom: 1px solid var(--hairline-on-ink);
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px 32px; }
.site-footer nav a, .site-footer .foot-legal a {
  color: var(--paper-on-ink);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.site-footer nav a:hover, .site-footer .foot-legal a:hover { color: #fff; text-decoration: underline; text-underline-offset: 0.3em; }
.site-footer .meta { color: var(--meta-on-ink); }
.site-footer .foot-mid {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 40px;
  padding-block: 40px 18px;
}
.site-footer .foot-legal { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: baseline; }
.site-footer .foot-legal span { color: var(--meta-on-ink); font-size: 14px; }
.giant-wordmark { padding-bottom: clamp(20px, 4vh, 44px); color: var(--paper-on-ink); }

/* ── Ceník page ─────────────────────────────────────────────────── */
.page-title { padding-block: clamp(52px, 9vh, 100px) clamp(36px, 6vh, 64px); }
.page-title h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 120px);
  letter-spacing: -0.018em;
  line-height: 1;
}
.page-title .lede {
  margin-top: clamp(20px, 3vh, 32px);
  color: var(--ink-soft);
  max-width: 52ch;
}
.tariff { border-bottom: 1px solid var(--hairline); }
.tier {
  display: grid;
  grid-template-columns: 3.2em minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 10px var(--colgap);
  padding-block: clamp(28px, 4.5vh, 44px);
  border-top: 1px solid var(--hairline);
}
.tier .idx { color: var(--oxblood); padding-top: 10px; }
.tier h2 { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 36px); letter-spacing: -0.01em; }
.tier .price {
  grid-column: 3;
  grid-row: 1 / 3;
  justify-self: end;
  align-self: start;
  text-align: right;
  font-family: var(--mono);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-top: 8px;
  white-space: nowrap;
}
.tier .desc { grid-column: 2; color: var(--ink-soft); max-width: 52ch; }
.tariff-notes {
  padding-block: clamp(36px, 5vh, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--colgap);
}
.tariff-notes p { color: var(--ink-meta); font-size: 14.5px; max-width: 46ch; }
.tariff-notes p strong { color: var(--ink-soft); font-weight: 600; }
.tariff-stamp { padding-bottom: 40px; }

/* ── 404 ────────────────────────────────────────────────────────── */
.error-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.error-mark { width: 56px; color: var(--ink); }
.error-title { font-family: var(--serif); font-size: clamp(38px, 5vw, 64px); letter-spacing: -0.015em; }

/* ── Grid easter egg (press G) ──────────────────────────────────── */
html.show-grid body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  margin-inline: auto;
  max-width: var(--container);
  padding-inline: var(--gutter);
  background:
    repeating-linear-gradient(
      to right,
      color-mix(in srgb, var(--oxblood) 8%, transparent) 0,
      color-mix(in srgb, var(--oxblood) 8%, transparent) calc((100% - (var(--cols) - 1) * var(--colgap)) / var(--cols)),
      transparent calc((100% - (var(--cols) - 1) * var(--colgap)) / var(--cols)),
      transparent calc((100% - (var(--cols) - 1) * var(--colgap)) / var(--cols) + var(--colgap))
    ) content-box;
}

/* ── Print (ceník prints like a tariff sheet) ───────────────────── */
@media print {
  .site-header, .site-footer, .nav-overlay, .skip-link { display: none; }
  body { background: #fff; color: #000; }
  .tier { break-inside: avoid; }
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-construct { display: none; }
  .plate-1 { grid-column: 1 / 10; }
  .plate-2 { grid-column: 4 / 13; }
  .plate-quote { grid-column: 1 / 10; padding-block: 8px; }
  .plate-3 { grid-column: 3 / 13; }
  .contact-main { grid-column: 1 / 11; }
  .contact-mark { grid-column: 11 / 13; }
}
/* nav breakpoint - keep in sync with matchMedia('(min-width: 761px)') in site.js */
@media (max-width: 760px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .hero h1 { font-size: clamp(40px, 11.5vw, 64px); }
  .work-row { grid-template-columns: 2.6em minmax(0, 1fr) auto; }
  .work-row .cat { display: none; }
  .plate-1, .plate-2, .plate-3, .plate-quote { grid-column: 1 / 13; }
  .pillar { grid-template-columns: 2.6em minmax(0, 1fr); }
  .pillar p { grid-column: 2; }
  .person { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .person .li-link { justify-self: start; }
  .tier { grid-template-columns: 2.6em minmax(0, 1fr); }
  .tier .price { grid-column: 2; grid-row: auto; justify-self: start; text-align: left; padding-top: 4px; }
  .tier .desc { grid-column: 2; }
  .site-footer { min-height: 70vh; }
  .mail-link { border-bottom-width: 1px; }
}
