:root{
  --meat:   #B9866B;
  --veg:    #79714D;
  --fish:   #4194E0;
  --neutral:#B2AE9B;
  --accent: #FF4121;
  --paper: #FAF8F3;      
  --ink:   #111111;      
  --text:  #2A2A2A;      
  --muted: rgba(17,17,17,.55);

  /* Lines */
  --line: rgba(17,17,17,.14);
  --lineSoft: rgba(17,17,17,.10);

  --radius: 18px;
}

*{ box-sizing: border-box; }

html, body { height: 100%; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300; /* Montserrat Light */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.card{
  width: min(860px, 100%);
  background: transparent;
  padding: clamp(18px, 3.5vw, 44px);
}

.logoWrap{
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.logo{
  width: min(360px, 74%);
  height: auto;
  display: block;
}

.rule{
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line) 15%,
    var(--line) 85%,
    transparent 100%
  );
  margin: 18px 0 26px;
}

.rule.soft{
  margin-top: 28px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--lineSoft) 15%,
    var(--lineSoft) 85%,
    transparent 100%
  );
}

.headline{
  margin: 0 0 14px;
  text-align: center;

  font-family: "Reiher Headline", Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(26px, 3.2vw, 42px);

  color: var(--ink);
}

.body{
  margin: 0 auto 14px;
  max-width: 62ch;
  text-align: center;

  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  color: var(--text);
}

.headline::after{
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  border-radius: 99px;
  margin: 18px auto 0;
  background: var(--veg);
}

:focus-visible{
  outline: 3px solid color-mix(in srgb, var(--fish), white 15%);
  outline-offset: 3px;
  border-radius: 10px;
}