:root {
  --ink: #15231e;
  --muted: #63716b;
  --line: #d9e0dc;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --green: #14533b;
  --green-dark: #0d3b2a;
  --blue: #2f65c8;
  --gold: #b58a37;
  --shadow: 0 18px 45px rgba(19, 34, 29, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 5px 12px rgba(16, 39, 29, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

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

.top-nav a {
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.top-nav a:hover {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  min-height: 420px;
  padding: clamp(36px, 6vw, 78px) 0 36px;
}

.mmap-hero h1 {
  max-width: 900px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions,
.final-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.primary-button {
  background: var(--green);
  color: #fff;
}

.primary-button:hover {
  background: var(--green-dark);
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green);
}

.promo-panel {
  align-self: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.promo-panel p {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.promo-panel a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 34px;
}

.quick-card {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.quick-card:hover {
  border-color: #98afa5;
  transform: translateY(-1px);
}

.quick-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.quick-card strong {
  font-size: 21px;
  line-height: 1.35;
}

.quick-card small {
  color: var(--muted);
  font-size: 14px;
}

.info-band,
.flow-section,
.final-cta {
  margin: 34px 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.info-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 28px;
}

.focus-list,
.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list {
  display: grid;
  gap: 12px;
}

.focus-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--green);
  background: #f5f8f5;
  color: #314039;
}

.flow-section h2 {
  max-width: 800px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  counter-reset: flow;
}

.flow-list li {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.flow-list strong,
.flow-list span {
  display: block;
}

.flow-list strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.flow-list span {
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  display: block;
  margin-bottom: 56px;
  background: var(--green-dark);
  color: #fff;
}

.final-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .primary-button {
  background: #fff;
  color: var(--green-dark);
}

.legal-main {
  padding: clamp(28px, 5vw, 62px) 0 48px;
}

.legal-hero {
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  color: var(--ink);
  font-size: clamp(32px, 4.6vw, 52px);
}

.legal-hero .lead {
  max-width: 860px;
}

.updated {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-card {
  margin-top: 20px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2.6vw, 28px);
}

.legal-card p,
.legal-card li {
  color: #35433d;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.legal-card a {
  color: var(--green);
  font-weight: 800;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.support-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.support-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.support-form label span {
  font-size: 13px;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid #cbd7d0;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 12px 13px;
}

.support-form textarea {
  resize: vertical;
}

.support-form .wide,
.support-form button {
  grid-column: 1 / -1;
}

.support-form button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.support-form button:hover,
.support-form button:focus-visible {
  background: var(--green-dark);
}

.form-success,
.form-errors {
  display: grid;
  gap: 6px;
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 8px;
}

.form-success {
  border: 1px solid #afcfbf;
  background: #eef8f2;
  color: #164b34;
}

.form-errors {
  border: 1px solid #e1b9b9;
  background: #fff1f1;
  color: #792424;
}

.form-success strong,
.form-errors strong {
  font-size: 15px;
}

.form-success span,
.form-errors span {
  font-size: 14px;
}

.support-side {
  position: sticky;
  top: 84px;
}

.mail-link {
  display: inline-flex;
  margin: 4px 0 20px;
  color: var(--green);
  font-size: 17px;
  font-weight: 800;
}

.zmap-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 36px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.zmap-footer a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.zmap-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .info-band,
  .quick-links,
  .flow-list,
  .support-layout,
  .support-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .promo-panel,
  .quick-card,
  .flow-list li {
    min-height: auto;
  }

  .support-side {
    position: static;
  }
}

@media (max-width: 520px) {
  main {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 32px;
  }

  .top-nav a {
    padding: 8px 10px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
