:root {
  color-scheme: light;
  --bg: #f6f3ee;
  --bg-paper: #efe9e0;
  --surface: #ffffff;
  --text: #1e1a16;
  --muted: #6d645a;
  --pattern: #2c5f6e;
  --pattern-light: #4a8494;
  --pattern-dim: rgba(44, 95, 110, 0.1);
  --maker: #c45c3a;
  --maker-soft: rgba(196, 92, 58, 0.12);
  --studio: #8b7355;
  --grid: rgba(44, 95, 110, 0.06);
  --border: rgba(30, 26, 22, 0.1);
  --shadow: 0 18px 48px rgba(44, 95, 110, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-body:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    radial-gradient(ellipse 50% 35% at 85% 10%, var(--maker-soft), transparent 50%),
    linear-gradient(180deg, var(--bg-paper) 0%, var(--bg) 55%, #faf8f4 100%);
  background-size:
    24px 24px,
    24px 24px,
    auto,
    auto;
}

.backdrop__ruler {
  position: absolute;
  top: 12%;
  right: 6%;
  width: 90px;
  height: 18px;
  border: 1px solid rgba(44, 95, 110, 0.2);
  border-radius: 2px;
  opacity: 0.5;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 8px,
    rgba(44, 95, 110, 0.25) 8px,
    rgba(44, 95, 110, 0.25) 9px
  );
}

.page {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
  padding: 52px 0 88px;
}

.hero {
  margin-bottom: 40px;
}

.hero__sheet {
  padding: 36px 32px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__sheet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pattern) 0%, var(--maker) 55%, var(--studio) 100%);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pattern);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-title .pattern {
  color: var(--pattern);
}

.brand-title .maker {
  color: var(--maker);
  font-style: italic;
}

.brand-title .studio {
  display: block;
  margin-top: 6px;
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--studio);
}

h1 {
  margin: 22px 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 16px;
  max-width: 52ch;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.82;
}

.updated {
  margin-top: 20px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--pattern-light);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.highlights li:nth-child(1) {
  border-top: 3px solid var(--pattern);
}

.highlights li:nth-child(2) {
  border-top: 3px solid var(--maker);
}

.highlights li:nth-child(3) {
  border-top: 3px solid var(--studio);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.58;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pattern);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.68;
}

.card p + p {
  margin-top: 10px;
}

.card--wide {
  grid-column: 1 / -1;
  padding: 28px 26px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-paper) 100%);
  border-color: rgba(44, 95, 110, 0.15);
}

a {
  color: var(--pattern);
  text-decoration: none;
  border-bottom: 1px solid var(--maker-soft);
}

a:hover {
  color: var(--maker);
}

.footer {
  margin-top: 44px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
}

.footer strong .pattern {
  color: var(--pattern);
  font-style: normal;
}

.footer strong .maker {
  color: var(--maker);
}

@media (max-width: 760px) {
  .highlights {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card--wide {
    grid-column: auto;
  }

  .hero__sheet {
    padding: 28px 22px 24px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 36px 0 64px;
    width: min(100% - 28px, 900px);
  }
}
