:root {
  color-scheme: light;
  --paper: #f7f6f2;
  --surface: #fffefa;
  --ink: #192326;
  --muted: #66706d;
  --line: #d8ddd8;
  --coral: #c85f3c;
  --green: #6d8e45;
  --amber: #c8941d;
  --teal: #2f6f73;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 242, 0.96);
}

.wordmark {
  text-decoration: none;
}

.wordmark {
  font-size: 17px;
  font-weight: 800;
}

.intro {
  min-height: 0;
  display: flex;
  align-items: center;
}

.intro-inner,
.sites-section,
footer {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.intro-inner {
  padding: 72px 0 44px;
}

.access-label {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 16px;
  font-size: clamp(42px, 6.5vw, 76px);
  line-height: 1.15;
  letter-spacing: 0;
}

.sites-section {
  padding: 0 0 112px;
}

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

.site-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.site-image-link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eceee9;
}

.site-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 220ms ease;
}

.site-image-link:hover img,
.site-image-link:focus-visible img {
  transform: scale(1.018);
}

.site-card-body {
  padding: 25px 26px 28px;
}

.site-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 15px;
}

.access-label {
  color: var(--amber);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.3;
}

.site-card-body p {
  min-height: 5.1em;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 15px;
}

.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.visit-link span {
  font-size: 19px;
}

footer {
  display: flex;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 18px;
  }

  .intro-inner,
  .sites-section,
  footer {
    width: calc(100% - 36px);
  }

  .intro-inner {
    padding: 50px 0 34px;
  }

  h1 {
    font-size: 44px;
  }

  .sites-section {
    padding: 0 0 84px;
  }

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

  .site-card-body p {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-image-link img {
    transition: none;
  }
}
