/* wezdenko.com — one stylesheet, no dependencies, no external requests.
   System font stacks on purpose: nothing to fetch, nothing to break, and it still
   renders in three years untouched (BRIEF.md §6).

   The restraint here is deliberate (§2: the boring corporate front door). The job is to
   look DELIBERATELY spare rather than unfinished — which is a typography problem, not a
   reason to add content the brief forbids. */

:root {
  --paper:    #fbfaf8;
  --ink:      #16181c;
  --ink-soft: #4e535c;
  --rule:     #e4e1da;
  --accent:   #33556b;   /* muted slate. Deliberately unlike spotcraft.app's navy+amber —
                            the brands are separate on purpose (§2). */
  --link:     #2a5871;
  --link-hv:  #17384c;
  --measure:  38rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:    #15171a;
    --ink:      #e8e7e3;
    --ink-soft: #a3a7ad;
    --rule:     #2e3238;
    --accent:   #6d9cb8;
    --link:     #8fbcd8;
    --link-hv:  #b4d5ea;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  /* A short page in a tall viewport floats in the top third and reads as unfinished —
     the exact impression this page exists to avoid. Full-height column: the content sits
     optically centred, the footer holds the bottom edge, and the sparseness becomes a
     composition rather than an absence. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* A single hairline of colour. The whole visual identity, and enough of one that the
   page reads as designed rather than defaulted. */
.rule-top { height: 3px; background: var(--accent); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--paper); color: var(--ink);
  padding: .6rem 1rem; border: 2px solid var(--accent); z-index: 10;
}
.skip:focus { left: .5rem; top: .5rem; }

.wrap { max-width: var(--measure); margin: 0 auto; padding: 0 1.5rem; }
.wrap--wide { max-width: 44rem; }

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

/* --- the wordmark ------------------------------------------------------- */

.mark {
  margin: 0 0 1.75rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
}

.lede {
  font-size: 1.3125rem;
  line-height: 1.6;
  margin: 0 0 2.75rem;
  color: var(--ink);
}

.divider {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0 0 2.5rem;
}

/* --- blocks ------------------------------------------------------------- */

.block { margin: 0 0 2.5rem; }

.block h2 {
  margin: 0 0 .75rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.facts { margin: 0; }
.facts dt { font-weight: 600; }
.facts dd { margin: 0 0 .75rem; color: var(--ink-soft); }
.facts dd:last-child { margin-bottom: 0; }

.contact { margin: 0; font-size: 1.0625rem; }

/* --- links -------------------------------------------------------------- */

a { color: var(--link); text-underline-offset: .15em; }
a:hover { color: var(--link-hv); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

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

.site-foot {
  padding: 0 0 2.5rem;
  font-size: .875rem;
  color: var(--ink-soft);
}
.site-foot > .wrap { border-top: 1px solid var(--rule); padding-top: 1.5rem; }
.site-foot p { margin: 0 0 .5rem; }
.site-foot nav { margin-bottom: .5rem; }
.site-foot nav a { margin-right: 1.25rem; }
.entity { max-width: 32rem; }
.copy { color: var(--ink-soft); }

/* --- legal pages -------------------------------------------------------- */

.site-head { padding: 2.5rem 0 0; }
.site-head a {
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  font-size: .8125rem; text-decoration: none; color: var(--ink-soft);
}
.site-head a:hover { color: var(--link); }

h1 { font-size: 1.9rem; line-height: 1.25; letter-spacing: -.015em; margin: 0 0 1.25rem; }
h2 { font-size: 1.15rem; line-height: 1.35; margin: 2.5rem 0 .6rem; }
h3 { font-size: 1rem; margin: 1.75rem 0 .4rem; }
p, ul, ol { margin: 0 0 1.1rem; }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: .35rem; }
.muted { color: var(--ink-soft); }
.meta { color: var(--ink-soft); font-size: .9375rem; margin-bottom: 2rem; }

.notice {
  background: #fdf6e7;
  border-left: 4px solid #b8863b;
  padding: 1rem 1.25rem;
  margin: 0 0 2.25rem;
  font-size: .9375rem;
  line-height: 1.55;

}
.notice { color: inherit; }
.notice p { margin: 0; }
.notice p + p { margin-top: .6rem; }

@media (prefers-color-scheme: dark) {
  .notice { background: #241f14; border-left-color: #c69a4e; }
}

@media (max-width: 30rem) {
  main { padding: 3rem 0 2.5rem; }
  .mark { font-size: 1.25rem; letter-spacing: .14em; }
  .lede { font-size: 1.125rem; }
  h1 { font-size: 1.6rem; }
}
