:root {
  color-scheme: light;
  --ink: #171611;
  --ink-soft: #4c4940;
  --muted: #827b6f;
  --paper: #f6f0e7;
  --paper-light: #fffaf2;
  --sage: #485241;
  --clay: #a7654c;
  --line: rgba(23, 22, 17, 0.12);
  --panel: rgba(255, 250, 242, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(140deg, rgba(167, 101, 76, 0.13), transparent 32rem),
    linear-gradient(220deg, rgba(72, 82, 65, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--paper-light), var(--paper));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: url("assets/north-four-abstract.png");
  background-position: 50% 16%;
  background-size: cover;
  opacity: 0.07;
  filter: saturate(0.75);
}

a {
  color: inherit;
}

.page {
  width: min(100%, 1240px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px);
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.wordmark,
.header-link,
.button {
  text-decoration: none;
}

.wordmark {
  display: grid;
  width: fit-content;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 0.92;
}

.wordmark span:last-child {
  margin-left: 1.65em;
  color: var(--sage);
  font-style: italic;
}

.header-link {
  display: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.header-link:hover {
  color: var(--sage);
}

.hero {
  display: grid;
  place-items: center;
  min-height: min(680px, calc(100vh - 84px));
  padding: clamp(58px, 10vw, 112px) 0 clamp(46px, 8vw, 78px);
  text-align: center;
}

.hero-inner {
  width: min(100%, 840px);
}

.status,
.kicker {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.93;
}

.intro {
  width: min(100%, 680px);
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
}

.actions {
  display: grid;
  justify-items: center;
  gap: 0;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  color: var(--paper-light);
  background: var(--ink);
  font-size: 0.94rem;
  font-weight: 850;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--sage);
  box-shadow: 0 16px 40px rgba(72, 82, 65, 0.18);
  transform: translateY(-1px);
}

.wordmark:focus-visible,
.header-link:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 5px;
}

.holding-note {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(23, 22, 17, 0.08);
  backdrop-filter: blur(18px);
}

.holding-note h2 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 3.6vw, 3.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.holding-note > p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

@media (min-width: 700px) {
  .header-link {
    display: inline-flex;
  }

  .actions {
    grid-template-columns: auto;
    justify-content: center;
  }

  .holding-note {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
    align-items: end;
  }
}
