:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #60605b;
  --line: #dedbd2;
  --paper: #faf9f5;
  --panel: #ffffff;
  --accent: #b9362f;
  --accent-dark: #83231f;
  --steel: #2f3a40;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.site-header,
.site-footer,
.hero,
.section,
.page-title,
.detail,
.article {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: center;
  min-height: 72vh;
  padding: 28px 0 56px;
}

.hero h1,
.page-title h1,
.article-header h1,
.detail h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  overflow-wrap: normal;
  white-space: nowrap;
}

.detail h1,
.article-header h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.detail h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.hero p,
.page-title p,
.article-header p,
.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

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

.hero-image,
.detail-image,
.article-image,
.media {
  width: 100%;
  object-fit: cover;
  background: #e8e4da;
}

.hero-image {
  aspect-ratio: 4 / 3;
}

.media {
  aspect-ratio: 4 / 3;
}

.detail-image {
  aspect-ratio: 1 / 1;
  position: sticky;
  top: 24px;
}

.article-image {
  max-height: 620px;
  aspect-ratio: 16 / 9;
  margin: 32px 0;
}

.placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 28px;
  background: linear-gradient(135deg, #29343a, #c6c0b3);
  color: white;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 56px 0;
}

.section.compact {
  padding-top: 20px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading h2,
.site-footer h2,
.page-title h1 {
  margin: 0;
}

.section-heading p {
  color: var(--muted);
}

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

.grid.single {
  grid-template-columns: minmax(0, 760px);
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.card-body {
  padding: 20px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.card h2 a {
  text-decoration: none;
}

.card h2 a:hover {
  color: var(--accent-dark);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.page-title {
  max-width: 820px;
  padding: 76px 0 32px;
  margin-left: max(20px, calc((100% - var(--max)) / 2));
}

.detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  padding: 48px 0 72px;
}

.facts {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  margin: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
}

.facts dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
}

.prose {
  max-width: 760px;
}

.prose p {
  margin: 0 0 1em;
}

.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.85rem;
}

.article {
  max-width: 900px;
  padding: 48px 0 72px;
}

.article-header {
  max-width: 820px;
}

.article-body {
  font-size: 1.03rem;
}

.gallery {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto 56px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8e4da;
}

.sheet-embed {
  width: min(100%, 1100px);
  height: 720px;
  border: 1px solid var(--line);
  background: white;
}

.contact-page {
  min-height: 52vh;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero,
  .detail,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

  .detail-image {
    position: static;
  }
}

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

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

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

  .facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hero h1,
  .page-title h1,
  .article-header h1,
  .detail h1 {
    font-size: 2.6rem;
  }
}
