:root {
  --brand-green: #003b2a;
  --brand-green-deep: #002a1e;
  --brand-bright: #00ad74;
  --ink: #14221d;
  --muted: #66736e;
  --line: #dce4e0;
  --paper: #f7f9f8;
  --white: #ffffff;
  --page: min(1120px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.home-page {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--brand-green);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 8px 12px;
  color: var(--white);
  background: #111;
  transform: translateY(-160%);
}

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 249, 248, 0.98);
}

.site-header--dark {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.13);
  background: var(--brand-green);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: block;
  width: 158px;
  height: 54px;
  overflow: hidden;
  border-radius: 3px;
  background: transparent;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  padding: 10px 14px;
  list-style: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  user-select: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: "⌄";
  display: inline-block;
  margin-left: 8px;
  font-size: 12px;
  transition: transform 160ms ease;
}

.nav-menu[open] summary::after {
  transform: rotate(180deg);
}

.nav-menu summary:hover,
.nav-menu summary:focus-visible,
.nav-menu[open] summary {
  outline: none;
  background: rgba(0, 59, 42, 0.08);
}

.site-header--dark .nav-menu summary:hover,
.site-header--dark .nav-menu summary:focus-visible,
.site-header--dark .nav-menu[open] summary {
  background: rgba(255, 255, 255, 0.1);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  padding: 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0, 42, 30, 0.18);
}

.nav-panel--right {
  right: 0;
  left: auto;
}

.nav-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  outline: none;
  color: var(--brand-green);
  background: #edf7f3;
}

.nav-panel small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.brand-stage {
  flex: 1;
  min-height: calc(100vh - 204px);
  padding-block: 54px 48px;
  display: grid;
  place-items: center;
  align-content: center;
}

.hero-logo {
  width: min(760px, 100%);
  height: auto;
  display: block;
}

.brand-meta {
  margin-top: -4px;
  text-align: center;
}

.brand-meta h1 {
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand-meta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.content-main {
  min-height: calc(100vh - 204px);
  padding-block: 112px 96px;
}

.content-card {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--brand-bright);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.content-card h1 {
  margin: 0 0 34px;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.content-card > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.85;
}

.quiet-note {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.quiet-note strong {
  color: var(--ink);
  font-weight: 650;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.site-footer--dark {
  border-top-color: rgba(255, 255, 255, 0.13);
  background: var(--brand-green-deep);
}

.footer-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer--dark .footer-inner {
  color: rgba(255, 255, 255, 0.66);
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: inherit;
  text-underline-offset: 4px;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--brand-bright);
}

@media (max-width: 720px) {
  :root {
    --page: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 0;
    padding-block: 15px;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .brand {
    width: 136px;
    height: 46px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(127, 145, 137, 0.2);
    padding-top: 8px;
  }

  .nav-menu {
    flex: 1;
  }

  .nav-menu summary {
    padding-inline: 8px;
    text-align: center;
  }

  .nav-panel {
    left: 0;
    min-width: 180px;
  }

  .nav-menu:last-child .nav-panel {
    right: 0;
    left: auto;
  }

  .brand-stage {
    min-height: calc(100vh - 260px);
    padding-block: 28px 42px;
  }

  .hero-logo {
    width: 100%;
  }

  .brand-meta {
    margin-top: -10px;
  }

  .brand-meta h1 {
    letter-spacing: 0.02em;
  }

  .content-main {
    min-height: calc(100vh - 260px);
    padding-block: 76px 64px;
  }

  .content-card h1 {
    margin-bottom: 26px;
  }

  .footer-inner {
    min-height: 0;
    padding-block: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

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

  .nav-menu summary::after {
    transition: none;
  }
}

.business-list{margin-top:40px;display:grid;gap:24px}.business-list section{border-top:1px solid var(--line);padding-top:20px}.business-list h2{margin:0 0 8px;font-size:20px;font-weight:600}.business-list p{margin:0;color:var(--muted);font-size:16px}
