:root {
  color-scheme: light;
  --bg: #f5efe3;
  --surface: #fffaf1;
  --surface-strong: #fff6e6;
  --line: #e7dccb;
  --text: #201a15;
  --muted: #756b60;
  --orange: #ff6600;
  --orange-soft: #fff0df;
  --blue: #1e6aa8;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.96);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  font-size: 15px;
}

.brand-name {
  font-size: 18px;
  line-height: 1.05;
  font-weight: 760;
}

.brand-section {
  margin-top: 4px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 650;
}

.page-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  font-weight: 650;
}

.page-main {
  width: min(880px, calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 72px) 0 64px;
}

.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

.lead {
  max-width: 760px;
  color: #3b332c;
  font-size: 19px;
}

.notice {
  margin: 28px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.release-list {
  padding: 0;
  list-style: none;
}

.release-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.small {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .page-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-nav {
    gap: 12px;
  }
}
