:root {
  color-scheme: light;
  --ink: #202724;
  --muted: #68736d;
  --accent: #34745b;
  --accent-soft: #e9f1ec;
  --line: #e5e9e6;
  --page: #fafbfa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Segoe UI", sans-serif;
}

.site-header {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 clamp(24px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: Cambria, Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-name {
  font-family: Cambria, Georgia, serif;
  font-size: 19px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  min-height: 82px;
  align-items: stretch;
  gap: clamp(20px, 3.2vw, 46px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
  color: var(--accent);
}

.nav-link.is-current::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
}

.nav-link:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.page-content {
  display: grid;
  min-height: calc(100vh - 82px);
  place-items: center;
  padding: 48px 24px;
  background: var(--page);
}

.coming-soon {
  width: min(100%, 960px);
  text-align: center;
}

.coming-soon h1 {
  margin: 0 0 28px;
  font-family: Cambria, Georgia, serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 600;
}

.coming-soon-image {
  display: block;
  width: 100%;
  max-height: 54vh;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  object-fit: cover;
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px 0;
  }

  .main-nav {
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-link {
    font-size: 13px;
  }

  .page-content {
    min-height: calc(100vh - 134px);
    padding: 36px 20px;
  }

  .coming-soon h1 {
    margin-bottom: 22px;
  }

  .coming-soon-image {
    max-height: 46vh;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}