/* =========================================================
   Snow Discipline — Swiss-austere, standalone
   Typeface: Inter (rsms.me)
   ========================================================= */

:root{
  --bg: #ffffff;
  --text: #0b0c0f;
  --muted: #4a4f58;
  --rule: rgba(11,12,15,.14);
  --link: #0b0c0f;
  --max: 820px;

  --padX: 20px;
  --padY: 18px;
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: -0.010em;
  text-rendering: geometricPrecision;
}

a{
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid rgba(11,12,15,.22);
}
a:hover{
  border-bottom-color: rgba(11,12,15,.55);
}

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

.header{
  padding-top: 22px;
}

.mast{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.brand-name{
  font-weight: 650;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-bottom: none;
}

.brand-sub{
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav{
  display: flex;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.nav a{
  border-bottom: none;
  color: var(--muted);
}
.nav a:hover{
  color: var(--text);
}

.rule{
  margin-top: 18px;
  height: 1px;
  background: var(--rule);
}

.main{
  padding: 26px 0 8px;
}

.title{
  margin: 0;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 650;
}

.lede{
  margin: 12px 0 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 72ch;
}

.section{
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}

.kicker{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}

.subhead{
  margin: 18px 0 8px;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.015em;
}

p{
  margin: 0 0 12px;
  max-width: 80ch;
}

.muted{
  color: var(--muted);
}

.list{
  margin: 10px 0 12px;
  padding-left: 18px;
  max-width: 76ch;
}
.list li{
  margin: 6px 0;
}

.quote{
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 2px solid var(--rule);
  color: var(--text);
  background: rgba(11,12,15,.03);
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.96em;
  letter-spacing: 0.02em;
}

.footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer a{
  color: var(--muted);
  border-bottom: 1px solid rgba(11,12,15,.18);
}
.footer a:hover{
  color: var(--text);
  border-bottom-color: rgba(11,12,15,.45);
}

/* Small screens */
@media (max-width: 560px){
  .mast{
    flex-direction: column;
    align-items: flex-start;
  }
  .title{
    font-size: 38px;
  }
  .footer{
    flex-direction: column;
    align-items: flex-start;
  }
}

