:root {
  --bg: #eef3ea;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --text: #183224;
  --muted: #5f7367;
  --line: rgba(24, 50, 36, 0.12);
  --primary: #1f7a4f;
  --primary-dark: #145838;
  --accent: #d8b56a;
  --shadow: 0 20px 60px rgba(17, 45, 30, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Microsoft YaHei", "PingFang TC", "Noto Sans TC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 181, 106, 0.22), transparent 32%),
    linear-gradient(180deg, #f8fbf6 0%, #edf3ea 44%, #e6eee7 100%);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(248, 251, 246, 0.78);
  border-bottom: 1px solid rgba(24, 50, 36, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow);
}

.brand-block h1 {
  font-size: 20px;
  line-height: 1.3;
}

.eyebrow {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--primary);
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero h2 {
  max-width: 760px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 30px rgba(31, 122, 79, 0.24);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 50, 36, 0.08);
}

.info-card,
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -24px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 181, 106, 0.38), transparent 68%);
}

.info-card h3,
.panel h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.info-card dl {
  position: relative;
  z-index: 1;
}

.info-card dl div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-card dl div:last-child {
  border-bottom: 0;
}

.info-card dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.info-card dd {
  font-size: 17px;
  font-weight: 700;
}

.section {
  padding: 34px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.2;
}

.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.panel {
  padding: 28px;
}

.large-panel p + p,
.contact-panel p + .notice-box {
  margin-top: 14px;
}

.detail-list,
.contact-list {
  list-style: none;
}

.detail-list li,
.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list li:last-child,
.contact-list li:last-child {
  border-bottom: 0;
}

.alt {
  position: relative;
}

.alt::before {
  content: "";
  position: absolute;
  inset: 24px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.22));
  z-index: -1;
}

.service-card {
  min-height: 220px;
}

.card-no {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 34px;
  font-weight: 700;
}

.service-card p,
.large-panel p,
.contact-panel p {
  color: var(--muted);
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.contact-list strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.notice-box {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
}

.business-hours {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.business-hours h4 {
  margin-bottom: 6px;
  font-size: 18px;
}

.business-hours p {
  color: var(--muted);
}

.map-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  margin-top: 24px;
  align-items: center;
}

.map-copy p {
  color: var(--muted);
}

.inline-button {
  margin-top: 18px;
  min-width: 0;
}

.map-frame-wrap {
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #dfe8df;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
}

.footer {
  padding: 28px 0 42px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(24, 50, 36, 0.1);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner p + p {
  margin-top: 6px;
}

@media (max-width: 920px) {
  .topbar-inner,
  .hero-grid,
  .content-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .topbar-inner {
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .map-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .brand-block h1 {
    font-size: 17px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero-text,
  .info-card dd,
  .contact-list strong {
    font-size: 16px;
  }

  .panel,
  .info-card {
    padding: 22px;
    border-radius: 22px;
  }

  .button {
    width: 100%;
  }
}
