@import url("https://fonts.googleapis.com/css2?family=Staatliches&display=swap");

:root {
  --ink: #15242b;
  --heading: #083744;
  --muted: #596973;
  --line: #d8e7e5;
  --surface: #ffffff;
  --surface-soft: #f7fbfa;
  --surface-blue: #e8f7f5;
  --water: #145c63;
  --water-dark: #073845;
  --gold: #e2ad28;
  --gold-soft: #fff5d8;
  --green: #5f7d45;
  --deep-blue: #214d6b;
  --risk: #9b4a34;
  --shadow: 0 18px 45px rgba(8, 55, 68, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(60px 18px at 60px 0, transparent 94%, rgba(20, 92, 99, 0.035) 96% 99%, transparent 100%) 0 34px / 120px 42px repeat-x,
    radial-gradient(60px 18px at 0 0, transparent 94%, rgba(33, 77, 107, 0.025) 96% 99%, transparent 100%) 60px 55px / 120px 42px repeat-x,
    radial-gradient(circle at top left, rgba(191, 230, 223, 0.35), transparent 34rem),
    linear-gradient(180deg, #fbfdfc 0, #ffffff 24rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--water);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--water-dark);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  background: url("wgm_logo.png") center / contain no-repeat;
}

.brand > span:last-child,
.wordmark {
  font-family: "Staatliches", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.08em;
  color: #145c63;
  opacity: 0.65;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--surface-blue);
  color: var(--water-dark);
}

.nav-links a.button,
.nav-links a.button:visited {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--water-dark);
  color: #ffffff;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(8, 55, 68, 0.22);
}

.nav-links a.button:hover,
.nav-links a.button:focus,
.nav-links a.button:focus-visible,
.nav-links a.button:active {
  background: var(--water);
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--water-dark);
  color: #ffffff;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(8, 55, 68, 0.22);
}

.button:hover {
  background: var(--water);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--water-dark);
  box-shadow: none;
}

.hero {
  background:
    linear-gradient(115deg, rgba(232, 247, 245, 0.95), rgba(255, 255, 255, 0.84) 55%),
    radial-gradient(70px 20px at 70px 0, transparent 94%, rgba(20, 92, 99, 0.06) 96% 99%, transparent 100%) 0 30px / 140px 48px repeat,
    radial-gradient(70px 20px at 0 0, transparent 94%, rgba(226, 173, 40, 0.045) 96% 99%, transparent 100%) 70px 54px / 140px 48px repeat;
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.section,
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 36px;
  align-items: center;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  color: var(--heading);
}

h1 {
  max-width: 800px;
  font-size: clamp(2.45rem, 6vw, 5rem);
}

.hero-wordmark {
  max-width: 820px;
  font-size: clamp(3.2rem, 8vw, 6.3rem);
  line-height: 0.95;
}

h2 {
  font-family: "Staatliches", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

p {
  margin: 14px 0 0;
}

.lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.2rem;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.notice {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 5px solid var(--gold);
  background: var(--gold-soft);
  color: #49351a;
  font-weight: 650;
}

.mvp-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 24px;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.panel-header h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
}

.hero-logo {
  width: 56px;
  height: 84px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.88;
}

.metric {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(226, 173, 40, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-soft), #ffffff 76%);
}

.metric strong {
  display: block;
  color: var(--heading);
  font-family: "Staatliches", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.scope-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.scope-list > div {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
}

.status-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.status-row:first-of-type {
  border-top: 0;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
}

.dot.high {
  background: var(--risk);
}

.dot.medium {
  background: var(--gold);
}

.dot.low {
  background: var(--water);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(8, 55, 68, 0.06);
}

.card h3 {
  color: var(--heading);
}

.feature-card {
  border-top-width: 4px;
}

.feature-card h3 {
  font-family: "Staatliches", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.035em;
}

.feature-card.accent-teal {
  border-top-color: var(--water);
}

.feature-card.accent-gold {
  border-top-color: var(--gold);
}

.feature-card.accent-green {
  border-top-color: var(--green);
}

.feature-card.accent-blue {
  border-top-color: var(--deep-blue);
}

.card strong {
  color: var(--water-dark);
}

.band {
  background: linear-gradient(180deg, var(--surface-soft), var(--surface-blue));
  border-block: 1px solid var(--line);
}

.page-title {
  background:
    linear-gradient(115deg, rgba(232, 247, 245, 0.94), rgba(255, 255, 255, 0.9)),
    radial-gradient(64px 18px at 64px 0, transparent 94%, rgba(20, 92, 99, 0.05) 96% 99%, transparent 100%) 0 34px / 128px 44px repeat;
  border-bottom: 1px solid var(--line);
}

.page-title .section {
  padding-top: 44px;
  padding-bottom: 44px;
}

.page-title h1 {
  font-family: "Staatliches", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.035em;
}

.content {
  max-width: 830px;
}

.content h2 {
  margin-top: 38px;
  font-size: 1.75rem;
  color: var(--heading);
}

.content ul,
.content ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.content li {
  margin-top: 10px;
}

.callout {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.contact-hero .section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.contact-hero .section > p:last-child {
  max-width: 680px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  gap: 48px;
}

.contact-details {
  max-width: 680px;
}

.contact-details h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

.contact-email {
  display: inline-block;
  margin-top: 18px;
  color: var(--water-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

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

.feedback-form-wrap {
  width: min(100%, 860px);
  margin: 0 auto;
}

.feedback-form {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--water);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feedback-form iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}

.form-fallback {
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #16242b;
  color: #d8e2e5;
}

.site-footer a {
  color: #ffffff;
}

.footer-inner {
  padding-top: 34px;
  padding-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.small {
  color: #aebec4;
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-inner,
  .section,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-grid,
  .grid,
  .grid.two,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(191, 230, 223, 0.24), transparent 24rem),
      linear-gradient(180deg, #fbfdfc 0, #ffffff 20rem);
  }

  .nav {
    padding: 12px 18px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    width: 100%;
    gap: 8px;
  }

  .nav-links a {
    min-height: 40px;
    padding: 9px 10px;
  }

  .nav-links a.button,
  .nav-links a.button:visited {
    width: 100%;
    min-height: 46px;
  }

  .hero-inner,
  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .hero-grid {
    gap: 26px;
    align-items: start;
  }

  h1,
  .hero-wordmark {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
    line-height: 1;
  }

  .page-title .section,
  .contact-hero .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .page-title h1 {
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .lede {
    font-size: 1.05rem;
  }

  .actions {
    gap: 10px;
    margin-top: 22px;
  }

  .actions .button {
    width: 100%;
    min-height: 48px;
  }

  .notice,
  .mvp-panel,
  .card,
  .callout {
    padding: 18px;
  }

  .metric {
    margin-top: 20px;
    padding: 18px;
  }

  .metric strong {
    font-size: clamp(2.6rem, 14vw, 3.8rem);
  }

  .grid,
  .grid.two {
    gap: 16px;
    margin-top: 22px;
  }

  .content h2 {
    margin-top: 30px;
  }

  .contact-section {
    gap: 32px;
  }

  .feedback-form-wrap {
    width: 100%;
  }

  .feedback-form iframe {
    min-height: 660px;
  }
}

@media (max-width: 520px) {
  .nav-links a {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .nav-links a.button,
  .nav-links a.button:visited {
    flex-basis: 100%;
  }

  .hero-inner,
  .section,
  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .panel-header {
    align-items: flex-start;
  }

  .hero-logo {
    width: 48px;
    height: 72px;
  }

  .feedback-form iframe {
    min-height: 620px;
  }
}
