:root {
  --background: #f4f4f2;
  --text: #2b2d2f;
  --muted: #55595d;
  --line: #d6d6d2;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

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

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-header {
  height: 92px;
  padding: 0 4.8vw;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-mark {
  font-family: "Arial Narrow", "Helvetica Neue Condensed Black", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.085em;
  transform: skew(-9deg) scaleX(0.86);
  transform-origin: left center;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.2rem);
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.home-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 8vh 4.8vw;
}

.hero {
  width: min(var(--max-width), 100%);
  margin-top: -2vh;
}

.hero h1 {
  margin: 0 0 1.85rem;
  color: var(--text);
  font-family: "Arial Narrow", "Helvetica Neue Condensed Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(5.2rem, 11.5vw, 9.1rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.1em;
  line-height: 0.88;
  transform: skew(-10deg) scaleX(0.86);
  transform-origin: left center;
}

.hero p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 1.45;
}

.page-main {
  flex: 1;
  width: min(var(--max-width), calc(100% - 9.6vw));
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 8rem) 0;
}

.page-content {
  max-width: 760px;
}

.page-content h1 {
  margin: 0 0 3rem;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 750;
}

.info-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.info-list div {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 2rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-weight: 500;
}

.info-list dd {
  margin: 0;
  color: var(--text);
}

.site-footer {
  min-height: 92px;
  padding: 0 4.8vw;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.site-footer span {
  width: 1px;
  height: 1.7rem;
  background: var(--line);
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

  .site-nav {
    gap: 1.4rem;
  }

  .home-main {
    place-items: center start;
    padding-top: 12vh;
    padding-bottom: 12vh;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 20vw, 6.2rem);
    margin-bottom: 1.35rem;
  }

  .hero p {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  .hero p br {
    display: none;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
