:root {
  --bg: #0c0c0d;
  --paper: #f5f0e8;
  --text: #141414;
  --white: #ffffff;
  --accent: #972822;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--paper);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: var(--bg);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.18) 18%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(151, 40, 34, 0.22) 0%, rgba(0, 0, 0, 0) 45%);
}

.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.96rem;
  font-weight: 600;
  font-family: "Gill Sans Nova", "Gill Sans", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
}

.brand-line {
  display: grid;
  grid-template-columns: repeat(10, 1.35ch);
  column-gap: 0.24em;
}

.brand-line span {
  display: block;
  width: 1.35ch;
  text-align: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 0 0 52px;
}

.hero-kicker,
.section-label {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.88);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Gill Sans Nova", "Gill Sans", "Trebuchet MS", sans-serif;
  font-weight: 600;
}

h1 {
  max-width: none;
  font-size: clamp(1.8rem, 4.2vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-link::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: currentColor;
}

main {
  background:
    linear-gradient(180deg, rgba(151, 40, 34, 0.06) 0%, rgba(151, 40, 34, 0) 12%),
    var(--paper);
}

.photos-section {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 88px 0;
}

.section-head {
  margin-bottom: 32px;
}

.section-label {
  color: var(--accent);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.photo-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #151515;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.photo-art {
  position: absolute;
  inset: 0;
}

.photo-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-credit {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .nav-links {
    gap: 16px;
  }

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

  .photo-card {
    aspect-ratio: 16 / 10;
  }

}

@media (max-width: 720px) {
  .topbar,
  .hero-copy,
  .photos-section {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  h1 {
    font-size: clamp(1.2rem, 7vw, 2rem);
    letter-spacing: 0.12em;
  }

  .photos-section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .results-table th,
  .results-table td {
    padding: 16px 8px;
    min-width: 120px;
  }
}
