:root {
  color-scheme: light;
  --bg: #f9f6f2;
  --bg-thread: #efe8df;
  --surface: #ffffff;
  --text: #2c2620;
  --muted: #6d6358;
  --loom: #8b7355;
  --loom-light: #b89a72;
  --look: #c45c6a;
  --look-soft: #f0d4d8;
  --thread: #d4c4b0;
  --border: rgba(44, 38, 32, 0.1);
  --shadow: 0 20px 56px rgba(139, 115, 85, 0.14);
  --radius: 6px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body:
    "SF Pro Text",
    Inter,
    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);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(212, 196, 176, 0.15) 20px,
      rgba(212, 196, 176, 0.15) 21px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(196, 92, 106, 0.06) 20px,
      rgba(196, 92, 106, 0.06) 21px
    ),
    var(--bg);
}

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

.hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
  padding: 36px 34px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.loom-grid {
  display: grid;
  grid-template-columns: repeat(4, 10px);
  grid-template-rows: repeat(4, 10px);
  gap: 4px;
  padding: 16px;
  border: 2px solid var(--thread);
  background: var(--bg-thread);
}

.loom-grid span {
  border-radius: 1px;
  background: var(--loom-light);
}

.loom-grid span:nth-child(3n) {
  background: var(--look);
  opacity: 0.7;
}

.loom-grid span:nth-child(5n) {
  background: var(--thread);
}

.hero__copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--look);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
}

.brand-title .loomy {
  color: var(--loom);
  font-style: normal;
  font-weight: 700;
}

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

h1 {
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.lead {
  margin-top: 12px;
  max-width: 48ch;
  font-size: 0.98rem;
  color: var(--muted);
}

.updated {
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--loom);
}

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

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

.highlights li:nth-child(2) {
  background: var(--look-soft);
  border-style: solid;
  border-color: rgba(196, 92, 106, 0.25);
}

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

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

.cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.card h2 {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--loom);
}

.card__body p {
  margin: 0;
  font-size: 0.91rem;
  color: var(--muted);
}

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

a {
  color: var(--look);
  font-weight: 650;
}

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

.footer {
  margin-top: 34px;
  padding: 22px 28px;
  border-radius: var(--radius);
  background: var(--loom);
  color: var(--bg-thread);
  text-align: center;
  font-size: 0.86rem;
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
}

@media (max-width: 680px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .loom-grid {
    margin: 0 auto;
  }

  .lead {
    max-width: none;
  }

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

  .card {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 28px 0 56px;
  }

  .hero {
    padding: 28px 22px;
  }
}
