:root {
  --ink: #151515;
  --muted: #5f5b55;
  --paper: #faf8f4;
  --panel: #ffffff;
  --line: #ded7cc;
  --red: #b11116;
  --red-dark: #7f0b0f;
  --gold: #b9975b;
  --charcoal: #201d1b;
  --shadow: 0 24px 60px rgba(21, 21, 21, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
  padding: 0.75rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(250, 248, 244, 0.94);
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 0.4rem 0;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--red);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 50%;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(2rem, 5vw, 5rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.04)),
    url("assets/images/mhollerNHelm2020_06-scaled.jpg") center center / cover no-repeat;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-band .eyebrow {
  color: #efc77c;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.5rem;
}

.hero p:not(.eyebrow),
.media-hero p,
.page-hero p {
  max-width: 620px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.button-row,
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button.secondary {
  color: #fff;
  background: transparent;
}

.button.light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.intro-grid,
.split-panel,
.upward-preview,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.split-panel,
.upward-preview {
  background: #fff;
}

.reverse {
  background: transparent;
}

.feature-image {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.panel-copy {
  max-width: 690px;
}

.panel-copy p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.month-grid,
.post-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.month-grid article,
.post-card,
.video-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.month-grid article {
  padding: 1.5rem;
}

.month-grid ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.month-grid li + li {
  margin-top: 0.65rem;
}

.dark-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
  background: var(--charcoal);
}

.dark-band h2 {
  max-width: 820px;
}

.page-hero {
  padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 5vw, 5rem);
  background: #fff;
}

.page-hero h1,
.media-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.page-hero figure {
  margin: 0;
  overflow: hidden;
  max-height: 620px;
  box-shadow: var(--shadow);
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.prose h2 {
  margin-top: 2rem;
  color: var(--ink);
}

.detail-band {
  background: var(--red-dark);
  color: #fff;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.detail-band p,
.detail-band strong {
  display: block;
  max-width: 1000px;
  margin: 0 auto 1rem;
}

.media-hero {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.22)),
    url("assets/images/mhollerNHelm2020_06-scaled.jpg") center 38% / cover no-repeat;
}

.media-hero .eyebrow {
  color: #efc77c;
}

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

.video-card {
  padding: 0;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

.video-card h2 {
  padding: 1rem;
  font-size: 1.25rem;
}

.notes-hero {
  background: var(--paper);
}

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

.gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.post-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.post-card div {
  padding: 1rem;
}

.post-card h2 {
  font-size: 1.35rem;
}

.post-meta {
  margin: 0 0 0.5rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  color: #fff;
  background: #080808;
}

.site-footer h2 {
  font-size: 1.8rem;
}

.site-footer p {
  margin: 0.25rem 0 0;
  color: #c9c1b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.2rem;
}

.footer-links a {
  color: #fff;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .intro-grid,
  .split-panel,
  .upward-preview,
  .page-hero,
  .month-grid,
  .post-grid,
  .video-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .dark-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 78vh;
    padding: 2rem 1rem;
    background-position: 42% center;
  }

  h1 {
    font-size: 3.3rem;
  }

  .button {
    width: 100%;
  }
}
