:root {
  --paper: #fbfbfb;
  --ink: #171312;
  --muted: #635d59;
  --line: #1f1a18;
  --wine: #5f0f1d;
  --lobster: #d34d32;
  --soft: #f0efed;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Times New Roman", "Noto Serif SC", "Songti SC", serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 14px;
  border: 1px solid rgba(23, 19, 18, 0.25);
  pointer-events: none;
  z-index: 20;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 44px;
  background: rgba(251, 251, 251, 0.92);
  border-bottom: 1px solid rgba(23, 19, 18, 0.16);
  backdrop-filter: blur(14px);
}

.wordmark {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 0.82rem;
}

nav a {
  border-bottom: 1px solid transparent;
}

nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid var(--line);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  height: 18px;
  border-left: 2px solid var(--line);
  border-right: 2px solid var(--line);
  pointer-events: none;
}

.hero::before {
  top: 32px;
  border-top: 2px solid var(--line);
}

.hero::after {
  bottom: 32px;
  border-bottom: 2px solid var(--line);
}

.hero-inner {
  width: min(1040px, calc(100% - 72px));
  margin: 0 auto;
  padding: 74px 0 54px;
  text-align: center;
}

.eyebrow,
.section-kicker,
.note-region,
.journal-tag,
.note-number,
.object-list span {
  margin: 0;
  color: var(--wine);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-logo {
  width: 100%;
  max-width: 760px;
  margin: 28px auto 24px;
  mix-blend-mode: multiply;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 2.5rem;
  line-height: 1.16;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions,
.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 0.86rem;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 0.78rem;
}

.hero-meta span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-right: 1px solid var(--line);
}

.hero-meta span:last-child {
  border-right: 0;
}

.section,
.band {
  width: min(1160px, calc(100% - 72px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-grid,
.object-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 58px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.object-copy h2,
.contact h2 {
  margin: 12px 0 0;
  font-size: 2.1rem;
  line-height: 1.18;
  font-weight: 500;
}

.intro-copy,
.section-heading p,
.object-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-copy p:first-child,
.object-copy p:first-of-type,
.contact p {
  margin-top: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  align-items: end;
  margin-top: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 540px;
}

.section-heading p {
  max-width: 390px;
  margin: 0 0 4px;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.note-card {
  min-height: 330px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.feature-note {
  background:
    linear-gradient(rgba(23, 19, 18, 0.045), rgba(23, 19, 18, 0.045)),
    var(--panel);
}

.note-number {
  color: var(--lobster);
}

.note-card h3,
.object-list h3,
.journal-item h3 {
  margin: 18px 0 12px;
  font-size: 1.2rem;
  line-height: 1.28;
  font-weight: 500;
}

.note-card p:not(.note-region),
.object-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.note-region {
  margin-top: 28px;
  color: var(--wine);
}

.label-strip {
  width: min(980px, calc(100% - 72px));
  margin: 0 auto;
  padding: 18px 0 0;
  border-top: 2px solid var(--line);
}

.label-strip img {
  width: min(560px, 100%);
  margin: 0 auto;
  mix-blend-mode: multiply;
  opacity: 0.82;
}

.objects {
  padding-top: 74px;
}

.object-copy {
  position: sticky;
  top: 96px;
}

.object-list {
  border-top: 1px solid var(--line);
}

.object-list article {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.journal {
  border-top: 1px solid rgba(23, 19, 18, 0.16);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journal-item {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(95, 15, 29, 0.08), transparent 42%),
    var(--panel);
}

.journal-item:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(211, 77, 50, 0.1), transparent 42%),
    var(--panel);
}

.journal-item h3 {
  margin-bottom: 0;
}

.contact {
  width: min(1160px, calc(100% - 72px));
  margin: 0 auto 72px;
  padding: 78px 0;
}

.contact-panel {
  padding: 52px;
  text-align: center;
  border: 2px solid var(--line);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(23, 19, 18, 0.16) calc(50% - 1px), rgba(23, 19, 18, 0.16) calc(50% + 1px), transparent calc(50% + 1px)),
    var(--panel);
}

.contact h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact p {
  max-width: 620px;
  margin: 18px auto 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 44px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, "PingFang SC", sans-serif;
  font-size: 0.82rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 28px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  body::before {
    inset: 8px;
  }

  .hero {
    min-height: 74svh;
  }

  .hero::before,
  .hero::after {
    left: 18px;
    right: 18px;
  }

  .hero-inner,
  .section,
  .band,
  .label-strip,
  .contact {
    width: min(100% - 36px, 760px);
  }

  .hero h1,
  .intro h2,
  .section-heading h2,
  .object-copy h2,
  .contact h2 {
    font-size: 1.75rem;
  }

  .hero-meta,
  .intro-grid,
  .object-layout,
  .section-heading,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-meta span:nth-child(2) {
    border-right: 0;
  }

  .hero-meta span:nth-child(1),
  .hero-meta span:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: grid;
    gap: 12px;
    align-items: start;
  }

  .note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .object-copy {
    position: static;
  }

  .contact-panel {
    padding: 34px 20px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 20px;
  }

  .hero-inner {
    padding-top: 68px;
  }

  .hero h1,
  .intro h2,
  .section-heading h2,
  .object-copy h2,
  .contact h2 {
    font-size: 1.48rem;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    word-break: break-word;
  }

  .hero-copy,
  .intro-copy,
  .section-heading p,
  .object-copy p,
  .contact p {
    font-size: 0.96rem;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
  }

  .eyebrow {
    overflow-wrap: break-word;
    word-break: break-word;
    padding: 0 4px;
  }

  .hero-logo {
    margin-top: 22px;
    max-width: min(280px, 100%);
  }

  .hero h1 {
    max-width: 100%;
    word-break: break-all;
  }

  .hero-copy {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-actions,
  .contact-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-wrap: anywhere;
  }

  .hero-meta span:last-child {
    border-bottom: 0;
  }

  .note-card,
  .journal-item {
    min-height: 230px;
  }

  .section,
  .band {
    padding: 64px 0;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px 28px 30px;
  }
}
