:root {
  color-scheme: dark;
  --ink: #edf0e9;
  --muted: #a7aea9;
  --night: #101416;
  --panel: #171d1f;
  --line: #394144;
  --signal: #d6a657;
  --cool: #7da1a4;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

a { color: inherit; }

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  text-decoration: none;
}

nav { display: flex; gap: 26px; }

nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible { color: var(--ink); }

.hero {
  min-height: min(72vh, 760px);
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 24px;
  overflow: hidden;
  background: #080b0d;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 13, .03) 28%, rgba(8, 11, 13, .92) 100%);
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: clamp(28px, 6vw, 72px);
}

.date,
.label,
.section-heading p {
  margin: 0 0 12px;
  color: var(--signal);
  font-size: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { letter-spacing: 0; }

h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 400;
  line-height: .98;
}

.hero-copy > p:last-child {
  max-width: 580px;
  margin: 24px 0 0;
  color: #d2d6d1;
  font-size: 17px;
}

.log {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) 2fr;
  gap: 0 56px;
  padding: 90px 0;
}

.section-heading { grid-row: 1 / span 3; }

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
}

.log article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.log time { color: var(--cool); font-variant-numeric: tabular-nums; }

.log h3 { margin: 0 0 8px; font-size: 16px; font-weight: 600; }

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

.conditions {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: end;
  padding: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.conditions dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 20px;
  margin: 0;
}

.conditions dl div { border-left: 1px solid var(--line); padding-left: 18px; }

.conditions dt { color: var(--muted); font-size: 12px; }

.conditions dd { margin: 5px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 25px; }

.about {
  max-width: 760px;
  padding: 90px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.35;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 760px) {
  .site-header,
  main,
  footer { width: min(100% - 28px, 1180px); }

  .site-header { align-items: flex-start; flex-direction: column; justify-content: center; padding: 16px 0; }
  nav { width: 100%; justify-content: space-between; gap: 12px; }
  .hero { min-height: 70vh; margin-top: 14px; }
  .hero-copy { padding: 26px 20px; }
  h1 { font-size: 48px; }
  .log { grid-template-columns: 1fr; padding: 64px 0; }
  .section-heading { grid-row: auto; margin-bottom: 32px; }
  .conditions { grid-template-columns: 1fr; padding: 28px 20px; }
  .conditions dl { grid-template-columns: repeat(2, 1fr); }
  .about { padding: 64px 0; font-size: 24px; }
  footer { flex-direction: column; }
}
