:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --text: #171b1f;
  --muted: #5e6872;
  --line: #d9ded8;
  --accent: #1d6f5f;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0;
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.notice {
  width: min(100%, 760px);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(23, 27, 31, 0.08);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(23, 27, 31, 0.08);
}

.logo-wrap {
  display: flex;
  align-items: center;
  min-height: 88px;
  margin-bottom: clamp(32px, 6vw, 52px);
}

.logo {
  display: block;
  width: auto;
  max-width: min(260px, 72vw);
  max-height: 92px;
  object-fit: contain;
}

.logo--wide {
  max-width: min(340px, 78vw);
  max-height: 82px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(29, 111, 95, 0.12);
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(1.55rem, 6.7vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.copy {
  max-width: 620px;
  margin: clamp(24px, 5vw, 34px) 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.8vw, 1.24rem);
  line-height: 1.65;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: clamp(30px, 6vw, 46px);
  padding-top: clamp(22px, 4vw, 30px);
  border-top: 1px solid var(--line);
}

.contact span {
  color: var(--muted);
}

.contact a,
.copy a {
  color: var(--text);
  font-weight: 700;
  text-decoration-color: rgba(29, 111, 95, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact a:focus-visible,
.copy a:focus-visible {
  outline: 3px solid rgba(29, 111, 95, 0.28);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 520px) {
  main {
    align-items: stretch;
    padding: 16px;
  }

  .notice {
    min-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .logo-wrap {
    min-height: 72px;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}
