:root {
  --ink: #102a43;
  --muted: #52697a;
  --brand: #0b4054;
  --brand-strong: #063243;
  --accent: #e3a53f;
  --paper: #ffffff;
  --wash: #f2f7f8;
  --line: #d7e3e7;
  --success: #176b5b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--wash);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% -10%, rgba(227, 165, 63, 0.16), transparent 28rem),
    linear-gradient(180deg, #f8fbfc 0%, var(--wash) 36rem);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.68;
}

a {
  color: #075e74;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-strong);
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  background: var(--paper);
  box-shadow: 0 0 0 3px var(--accent);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid rgba(215, 227, 231, 0.9);
  background: rgba(255, 255, 255, 0.92);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--brand);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 0.7rem;
  background: var(--brand);
  color: white;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.home-link {
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  padding: 5.5rem 0 2.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--brand-strong);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.16;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  letter-spacing: -0.045em;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.025em;
}

.lead {
  max-width: 47rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
}

.notice-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.3rem 0 0;
}

.notice-meta div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
}

.notice-meta dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.notice-meta dd {
  margin: 0.2rem 0 0;
  font-weight: 750;
}

.summary {
  padding: 1.6rem 1.8rem;
  border: 1px solid #c7dfe0;
  border-left: 0.35rem solid var(--accent);
  border-radius: 1rem;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(15, 64, 84, 0.06);
}

.summary h2 {
  font-size: 1.45rem;
}

.summary ul,
.notice-body ul {
  padding-left: 1.25rem;
}

.summary li + li,
.notice-body li + li {
  margin-top: 0.55rem;
}

.notice-body {
  margin: 2rem 0 5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--paper);
  box-shadow: 0 20px 46px rgba(15, 64, 84, 0.075);
}

.notice-body section {
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.notice-body section + section {
  border-top: 1px solid var(--line);
}

.notice-body p {
  max-width: 72ch;
  margin: 0;
}

.notice-body p + p,
.notice-body p + ul,
.notice-body ul + p {
  margin-top: 1rem;
}

.notice-body li {
  max-width: 72ch;
}

.contact-card {
  background: linear-gradient(145deg, #f7fbfb, #eef7f5);
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 1.4rem 0;
  background: var(--brand-strong);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.site-footer a {
  color: white;
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 1.25rem, 70rem);
  }

  .header-inner {
    min-height: 4rem;
  }

  .home-link {
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .notice-meta {
    grid-template-columns: 1fr;
  }

  .summary {
    padding: 1.3rem 1.2rem;
  }

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

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