:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17211b;
  background: #f5f7f4;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: #f5f7f4;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid #d9dfda;
  background: #ffffff;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 0.94rem;
  font-weight: 720;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand-mark {
  width: 16px;
  height: 22px;
  border-radius: 55% 45% 52% 48%;
  background: #c43d2e;
  transform: rotate(12deg);
}

.header-note {
  color: #667069;
  font-size: 0.82rem;
  font-weight: 560;
}

main {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: clamp(52px, 6.5vw, 84px) 0 48px;
}

.intro {
  max-width: 1000px;
  margin-bottom: clamp(38px, 4.5vw, 56px);
}

.section-label {
  margin: 0 0 18px;
  color: #9b3025;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1000px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.intro-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: #566159;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.view-list {
  border-top: 1px solid #bdc7bf;
}

.view-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  min-height: 162px;
  padding: 30px 0;
  border-bottom: 1px solid #bdc7bf;
}

.view-index {
  align-self: start;
  padding-top: 7px;
  color: #8b958e;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.view-copy {
  max-width: 650px;
}

.view-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 690;
  letter-spacing: -0.035em;
}

.view-copy p {
  max-width: 590px;
  margin-bottom: 0;
  color: #667069;
  font-size: 0.98rem;
  line-height: 1.62;
}

.view-action {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #17211b;
  border-radius: 4px;
  background: #17211b;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 690;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.view-action.secondary {
  border-color: #9b3025;
  background: #9b3025;
}

.view-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.view-action:hover {
  border-color: #9b3025;
  background: #9b3025;
  transform: translateY(-2px);
}

.view-action:focus-visible,
.brand:focus-visible {
  outline: 3px solid #e4a59e;
  outline-offset: 4px;
}

footer {
  padding-top: 28px;
  color: #78827b;
  font-size: 0.8rem;
}

footer p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 24px;
  }

  .header-note {
    display: none;
  }

  main {
    width: auto;
    padding: 56px 24px 36px;
  }

  .intro {
    margin-bottom: 48px;
  }

  .view-row {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 16px;
    padding: 30px 0;
  }

  .view-action {
    grid-column: 2;
    justify-self: start;
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .view-action {
    transition: none;
  }
}
