:root {
  --bg: #f7f3eb;
  --bg-soft: #fffdf8;
  --ink: #2f3a33;
  --muted: #647068;
  --primary: #6f9973;
  --primary-dark: #56735a;
  --accent: #d9a96b;
  --line: rgba(86, 115, 90, 0.16);
  --shadow: 0 18px 40px rgba(67, 83, 70, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 169, 107, 0.18), transparent 26%),
    radial-gradient(circle at right 15%, rgba(111, 153, 115, 0.15), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe5 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 242, 0.78);
  border-bottom: 1px solid rgba(86, 115, 90, 0.1);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: none;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
}

.hero {
  padding: 58px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(111, 153, 115, 0.12);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
}

.hero-text {
  max-width: 58ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 12px 26px rgba(86, 115, 90, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(86, 115, 90, 0.16);
  color: var(--primary-dark);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(76, 89, 75, 0.06);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-size: 1.28rem;
}

.hero-card {
  position: relative;
  padding: 26px;
  min-height: 520px;
  display: grid;
  place-items: center;
  gap: 20px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(217, 169, 107, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(111, 153, 115, 0.15), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 243, 235, 0.96));
  border: 1px solid rgba(86, 115, 90, 0.12);
  box-shadow: var(--shadow);
}

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

.hero-card-note {
  width: 100%;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(86, 115, 90, 0.12);
  color: var(--muted);
  line-height: 1.8;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-head p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-head-compact {
  align-items: start;
  flex-direction: column;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(217, 169, 107, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 235, 0.95));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card::before,
.panel::before {
  content: "";
  position: absolute;
  inset: -18% auto auto -16%;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(111, 153, 115, 0.15), rgba(111, 153, 115, 0));
  border-radius: 50%;
  pointer-events: none;
}

.info-card > *,
.panel > * {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(111, 153, 115, 0.12);
  color: var(--primary-dark);
  font-size: 1.35rem;
}

.info-card h3 {
  margin: 14px 0 10px;
  font-size: 1.15rem;
}

.info-card p,
.schedule-item span,
.bullet-list,
.contact-list,
.license-list {
  color: var(--muted);
  line-height: 1.85;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.schedule-item {
  display: flex;
  gap: 14px;
  align-items: start;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(86, 115, 90, 0.12);
}

.schedule-item strong {
  flex: none;
  color: var(--primary-dark);
}

.highlight-panel {
  background:
    radial-gradient(circle at top left, rgba(217, 169, 107, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 243, 235, 0.96));
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
}

.bullet-list li + li {
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.photo-card {
  margin: 0;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

.photo-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.permit-panel {
  display: grid;
  place-items: center;
}

.permit-panel img {
  width: min(100%, 520px);
  height: auto;
  border-radius: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 18px;
}

.contact-item {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(86, 115, 90, 0.12);
}

.contact-label {
  color: var(--primary-dark);
  font-weight: 700;
}

.muted-panel {
  background:
    radial-gradient(circle at bottom right, rgba(111, 153, 115, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 243, 235, 0.95));
}

.site-footer {
  padding: 24px 0 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(86, 115, 90, 0.12);
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .contact-grid,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(86, 115, 90, 0.12);
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-stats,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: start;
  }
}
