
:root {
  color-scheme: light;
  --ink: #071a1f;
  --muted: #475569;
  --teal: #0f766e;
  --teal-dark: #073b3a;
  --aqua: #14b8a6;
  --amber: #f59e0b;
  --blue: #2563eb;
  --paper: #f6fbf9;
  --line: #d5e4df;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(9, 30, 34, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
picture { display: block; line-height: 0; }
.brand picture { flex: 0 0 auto; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.42);
  outline-offset: 3px;
}
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 10;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }
.notice-bar {
  background: var(--teal-dark);
  color: var(--white);
  font-size: 14px;
}
.notice-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.notice-inner strong {
  color: #a7f3d0;
  letter-spacing: 0.02em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 250px;
}
.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.primary-nav a {
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 6px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: #e6f6f2;
  color: var(--teal-dark);
}
.text-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.text-link {
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}
.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.2);
}
.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.button.full { width: 100%; margin-top: 18px; }
.hero {
  background:
    linear-gradient(90deg, rgba(246,251,249,1) 0%, rgba(246,251,249,0.94) 56%, rgba(230,246,242,0.92) 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  align-items: center;
  gap: 56px;
  padding: 74px 0;
}
.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  max-width: 800px;
  font-size: 62px;
  line-height: 0.97;
  letter-spacing: 0;
  margin-bottom: 22px;
}
.lead {
  max-width: 760px;
  color: #334155;
  font-size: 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-copy,
.visual-panel,
.link-card,
.message-copy,
.detail-block,
.side-panel,
.brand span,
.primary-nav a,
.notice-inner span {
  min-width: 0;
}
h1,
h2,
h3,
p,
a {
  overflow-wrap: break-word;
}
.visual-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
}
.visual-panel img {
  aspect-ratio: 7 / 5;
  object-fit: cover;
  width: 100%;
}
.visual-caption {
  border-top: 1px solid var(--line);
  padding: 18px 20px;
}
.visual-caption strong {
  display: block;
  font-size: 18px;
}
.visual-caption span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}
.section {
  padding: 72px 0;
}
.section.white {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  max-width: 860px;
  margin-bottom: 28px;
}
.section-head h2,
.intro-grid h2,
.split-grid h2 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.section-head p,
.intro-grid p,
.split-grid p {
  color: var(--muted);
  font-size: 18px;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: center;
}
.metric-row {
  display: grid;
  gap: 12px;
}
.metric-row div {
  border: 1px solid var(--line);
  background: #f9fcfb;
  border-radius: 8px;
  padding: 20px;
}
.metric-row strong {
  display: block;
  color: var(--teal-dark);
  font-size: 28px;
  line-height: 1;
}
.metric-row span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card-grid.small,
.city-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  display: grid;
  gap: 14px;
}
.link-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.white .link-card {
  background: #fbfefd;
}
.link-card:hover {
  transform: translateY(-2px);
  border-color: var(--aqua);
  box-shadow: 0 16px 30px rgba(9, 30, 34, 0.1);
}
.link-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.link-card strong {
  font-size: 21px;
  line-height: 1.18;
  margin-bottom: 10px;
}
.link-card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 15px;
}
.split-band {
  background: var(--ink);
  color: var(--white);
  padding: 68px 0;
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  gap: 36px;
  align-items: center;
}
.split-grid .kicker { color: #a7f3d0; }
.split-grid p { color: #d8eee9; }
.message-copy {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 24px;
}
.message-copy p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 18px;
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 370px);
  gap: 30px;
  align-items: start;
}
.detail-main {
  display: grid;
  gap: 16px;
}
.detail-block,
.side-panel {
  background: #fbfefd;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.detail-block h2,
.side-panel h2 {
  font-size: 28px;
  line-height: 1.12;
  margin-bottom: 10px;
}
.detail-block p {
  color: #334155;
  font-size: 17px;
}
.side-panel {
  position: sticky;
  top: 108px;
}
.side-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.side-panel li {
  padding-left: 22px;
  position: relative;
  color: #334155;
}
.side-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
}
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}
details p {
  color: var(--muted);
  margin: 12px 0 0;
}
.site-footer {
  background: #071a1f;
  color: var(--white);
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(150px, 1fr));
  gap: 28px;
}
.footer-grid p,
.footer-grid small {
  color: #c7ded9;
}
.footer-grid h2 {
  color: #a7f3d0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-grid a {
  display: block;
  color: #eafffb;
  text-decoration: none;
  margin: 8px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: #c7ded9;
  margin-top: 34px;
  padding-top: 18px;
  font-size: 14px;
}
.search-section {
  background: #ffffff;
}
.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}
.site-search-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: #f8fdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(9, 30, 34, 0.08);
}
.site-search-form label {
  font-weight: 900;
  color: var(--ink);
}
.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.search-row input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}
.site-search-form p {
  color: var(--muted);
  margin-bottom: 0;
}
.search-results-wrap {
  margin-top: 22px;
}
.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.search-result,
.search-empty {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.search-result span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search-result a {
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}
.search-result a:hover {
  color: var(--teal);
  text-decoration: underline;
}
.search-result p,
.search-empty p {
  color: var(--muted);
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .brand { min-width: 0; }
  .primary-nav { justify-content: flex-start; }
  .text-link { width: 100%; }
  .hero-grid,
  .intro-grid,
  .split-grid,
  .search-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: 0; padding: 54px 0; }
  h1 { font-size: 48px; }
  .card-grid,
  .card-grid.small,
  .city-strip,
  .search-results,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .side-panel { position: static; }
}
@media (max-width: 640px) {
  .wrap { width: calc(100% - 28px); max-width: 360px; }
  .header-inner { width: calc(100% - 28px); }
  .notice-inner { align-items: flex-start; flex-direction: column; padding: 10px 0; }
  .notice-inner span { display: none; }
  .hero-grid { display: block; }
  .visual-panel { margin-top: 34px; }
  .primary-nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .primary-nav a { border: 1px solid var(--line); text-align: center; background: #fbfefd; }
  h1 { font-size: 30px; line-height: 1.08; max-width: 100%; overflow-wrap: normal; word-break: normal; }
  .lead { font-size: 18px; }
  .section { padding: 52px 0; }
  .section-head h2,
  .intro-grid h2,
  .split-grid h2 { font-size: 32px; }
  .hero-actions { display: grid; }
  .card-grid,
  .card-grid.small,
  .city-strip,
  .search-row,
  .search-results,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .link-card { min-height: 0; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  h1 { font-size: 29px; }
  .lead { font-size: 17px; }
  .brand strong { font-size: 17px; }
}
