:root {
  --green-900: #223d25;
  --green-700: #3f6d42;
  --green-500: #78a55f;
  --green-100: #ecf4e5;
  --cream: #fff9eb;
  --paper: #fffdf7;
  --yellow: #f4c95d;
  --yellow-soft: #ffefba;
  --wood: #b77b45;
  --clay: #d98d5f;
  --sky: #b9dfe0;
  --ink: #243024;
  --muted: #687568;
  --line: #e6dcc7;
  --shadow: 0 22px 60px rgba(55, 85, 45, 0.14);
  --radius: 8px;
  --header-height: 74px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 235, 0.96), rgba(255, 253, 247, 0.98)),
    radial-gradient(circle at 12% 8%, rgba(244, 201, 93, 0.2), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(120, 165, 95, 0.18), transparent 28%);
  color: var(--ink);
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid rgba(230, 220, 199, 0.8);
  display: flex;
  gap: 24px;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 5vw, 64px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

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

.brand-mark {
  align-items: center;
  background: var(--yellow);
  border: 2px solid var(--green-900);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--green-900);
  color: var(--green-900);
  display: inline-flex;
  font-size: 19px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

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

.brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: -4px;
}

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

.site-nav a {
  border-radius: 999px;
  color: var(--green-900);
  font-size: 15px;
  padding: 9px 13px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: var(--green-100);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: var(--green-900);
  color: var(--cream);
  margin-left: 6px;
}

.site-nav .nav-cta:hover {
  background: var(--green-700);
}

.site-nav .is-active {
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.site-nav .nav-cta.is-active {
  background: var(--green-900);
  color: var(--cream);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.nav-toggle span {
  background: var(--green-900);
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.section,
.section-band {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 64px);
}

.section {
  background: var(--paper);
}

.section-band {
  background:
    linear-gradient(135deg, rgba(236, 244, 229, 0.96), rgba(255, 249, 235, 0.96)),
    repeating-linear-gradient(90deg, rgba(63, 109, 66, 0.05) 0 1px, transparent 1px 44px);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  padding-top: clamp(36px, 5vw, 72px);
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  color: var(--green-700);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
}

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

h1 {
  color: var(--green-900);
  font-size: clamp(58px, 9vw, 116px);
  line-height: 0.95;
  margin-bottom: 22px;
}

h2 {
  color: var(--green-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 0;
}

h3 {
  color: var(--green-900);
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-copy {
  color: #425044;
  font-size: clamp(18px, 2vw, 22px);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

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

.button.primary {
  background: var(--green-900);
  box-shadow: 0 14px 30px rgba(34, 61, 37, 0.18);
  color: var(--cream);
}

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

.button.secondary {
  background: rgba(255, 253, 247, 0.7);
  border-color: var(--line);
  color: var(--green-900);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
}

.hero-stats div {
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(230, 220, 199, 0.92);
  border-radius: var(--radius);
  padding: 16px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.hero-visual {
  aspect-ratio: 1 / 0.9;
  background:
    linear-gradient(180deg, rgba(185, 223, 224, 0.95) 0 42%, rgba(236, 244, 229, 0.98) 42% 100%);
  border: 1px solid rgba(63, 109, 66, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.hero-visual p {
  background: rgba(255, 253, 247, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  bottom: 18px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
  left: 50%;
  margin: 0;
  padding: 9px 16px;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 4;
}

.sun {
  background: var(--yellow);
  border-radius: 50%;
  height: 86px;
  left: 10%;
  position: absolute;
  top: 11%;
  width: 86px;
}

.hill {
  border-radius: 50% 50% 0 0;
  bottom: 0;
  position: absolute;
}

.hill-back {
  background: #95bd72;
  height: 42%;
  left: -10%;
  width: 80%;
}

.hill-front {
  background: #6f9c56;
  height: 36%;
  right: -12%;
  width: 78%;
}

.barn {
  background: var(--wood);
  border: 3px solid var(--green-900);
  bottom: 27%;
  height: 78px;
  left: 14%;
  position: absolute;
  width: 110px;
  z-index: 2;
}

.barn::before {
  border-bottom: 44px solid #8e5630;
  border-left: 61px solid transparent;
  border-right: 61px solid transparent;
  content: "";
  left: -9px;
  position: absolute;
  top: -46px;
}

.barn span {
  background: var(--cream);
  border: 2px solid var(--green-900);
  bottom: 0;
  height: 42px;
  left: 36px;
  position: absolute;
  width: 38px;
}

.chick {
  background: var(--yellow);
  border: 3px solid var(--green-900);
  border-radius: 50% 50% 46% 46%;
  position: absolute;
  z-index: 3;
}

.chick::before {
  background: var(--green-900);
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  right: 25%;
  top: 30%;
  width: 7px;
}

.chick::after {
  border-bottom: 7px solid transparent;
  border-left: 14px solid var(--clay);
  border-top: 7px solid transparent;
  content: "";
  position: absolute;
  right: -12px;
  top: 42%;
}

.chick span {
  background: #f7d979;
  border: 3px solid var(--green-900);
  border-radius: 50%;
  height: 42%;
  left: -18%;
  position: absolute;
  top: 34%;
  width: 42%;
}

.chick-large {
  bottom: 19%;
  height: 146px;
  right: 22%;
  width: 126px;
}

.chick-small {
  bottom: 15%;
  height: 86px;
  right: 7%;
  width: 74px;
}

.family-dot {
  border: 3px solid var(--green-900);
  border-radius: 999px 999px 8px 8px;
  bottom: 24%;
  position: absolute;
  z-index: 3;
}

.family-dot.adult {
  background: var(--green-700);
  height: 118px;
  left: 48%;
  width: 42px;
}

.family-dot.child {
  background: var(--clay);
  height: 82px;
  left: 58%;
  width: 34px;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 820px;
}

.section-link {
  border-bottom: 2px solid var(--yellow);
  color: var(--green-700);
  display: inline-flex;
  font-weight: 800;
  margin-top: 16px;
  padding-bottom: 2px;
}

.section-link:hover {
  color: var(--green-900);
}

.intro-grid,
.booking-layout,
.events-layout,
.value-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro-copy {
  color: #465348;
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article,
.course-card,
.zone-grid article,
.culture-grid article,
.info-item,
.contact-panel,
.booking-form,
.value-note,
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(68, 72, 54, 0.08);
}

.feature-list article {
  padding: 22px;
}

.feature-list span {
  color: var(--clay);
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.course-grid,
.zone-grid,
.culture-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.course-card {
  padding: 26px;
}

.course-card h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.course-card.highlight {
  background: linear-gradient(180deg, #fffdf7, #fff4d6);
  border-color: rgba(244, 201, 93, 0.72);
}

.card-kicker {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.price {
  color: var(--wood);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.course-card ul {
  color: var(--muted);
  margin: 18px 0 0;
  padding-left: 20px;
}

.zone-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zone-grid article,
.culture-grid article {
  padding: 24px;
}

.zone-icon {
  align-items: center;
  background: var(--green-100);
  border-radius: 50%;
  color: var(--green-900);
  display: flex;
  font-weight: 800;
  height: 54px;
  justify-content: center;
  margin-bottom: 18px;
  width: 54px;
}

.value-layout {
  align-items: center;
}

.value-timeline {
  display: grid;
  gap: 14px;
}

.value-timeline article {
  align-items: center;
  background: rgba(255, 253, 247, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  grid-template-columns: 92px 1fr;
  padding: 18px;
}

.value-timeline span {
  align-items: center;
  background: var(--green-700);
  border-radius: 999px;
  color: var(--cream);
  display: inline-flex;
  font-weight: 800;
  height: 44px;
  justify-content: center;
}

.value-timeline p,
.zone-grid p,
.culture-grid p,
.info-item p,
.course-card p,
.feature-list p,
.events-copy p,
.contact-panel p,
.faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.value-note {
  background: var(--green-900);
  color: var(--cream);
  padding: clamp(28px, 4vw, 44px);
}

.value-note h3,
.value-note p {
  color: var(--cream);
}

.value-note h3 {
  font-size: clamp(25px, 3vw, 38px);
}

.events-layout {
  align-items: center;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.1fr);
}

.image-placeholder {
  align-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(145deg, rgba(120, 165, 95, 0.28), rgba(244, 201, 93, 0.34)),
    repeating-linear-gradient(45deg, rgba(255, 253, 247, 0.38) 0 14px, rgba(255, 253, 247, 0.12) 14px 28px);
  border: 1px dashed var(--green-700);
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  min-height: 280px;
}

.image-placeholder span,
.qr-placeholder span {
  background: rgba(255, 253, 247, 0.78);
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 800;
  padding: 10px 18px;
}

.events-copy {
  max-width: 680px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-row span {
  background: var(--green-100);
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 700;
  padding: 8px 14px;
}

.info-board {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-item {
  padding: 22px;
}

.info-item span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.info-item strong {
  color: var(--green-900);
  display: block;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  color: var(--green-900);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  padding-top: 12px;
}

.booking-layout {
  align-items: start;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.1fr);
}

.contact-panel,
.booking-form {
  padding: clamp(24px, 4vw, 38px);
}

.contact-panel dl {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.contact-panel dl div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.contact-panel dt {
  color: var(--muted);
  font-size: 13px;
}

.contact-panel dd {
  color: var(--green-900);
  font-weight: 800;
  margin: 4px 0 0;
}

.qr-placeholder {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(236, 244, 229, 0.9), rgba(255, 239, 186, 0.9)),
    repeating-linear-gradient(90deg, rgba(34, 61, 37, 0.08) 0 8px, transparent 8px 16px),
    repeating-linear-gradient(0deg, rgba(34, 61, 37, 0.08) 0 8px, transparent 8px 16px);
  border: 1px dashed var(--green-700);
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  max-width: 220px;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.booking-form .button.full,
.form-status {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--green-900);
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 46px;
  outline: none;
  padding: 11px 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(120, 165, 95, 0.18);
}

.form-status {
  color: var(--green-700);
  font-weight: 800;
  margin: -4px 0 0;
  min-height: 28px;
}

.site-footer {
  align-items: center;
  background: var(--green-900);
  color: rgba(255, 249, 235, 0.86);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 64px);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  font-weight: 800;
}

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px;
}

.breadcrumb a {
  color: var(--green-700);
  font-weight: 800;
}

.page-hero {
  min-height: auto;
  padding-top: clamp(42px, 6vw, 88px);
}

.page-hero.compact {
  padding-bottom: clamp(56px, 7vw, 92px);
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  max-width: 940px;
}

.page-hero.compact h1 {
  max-width: 860px;
}

.page-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.78fr);
}

.page-visual {
  align-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(145deg, rgba(120, 165, 95, 0.28), rgba(244, 201, 93, 0.32)),
    repeating-linear-gradient(45deg, rgba(255, 253, 247, 0.5) 0 16px, rgba(255, 253, 247, 0.18) 16px 32px);
  border: 1px dashed rgba(63, 109, 66, 0.65);
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  min-height: 300px;
}

.page-visual span {
  background: rgba(255, 253, 247, 0.82);
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 800;
  padding: 10px 18px;
}

.course-visual {
  background:
    linear-gradient(145deg, rgba(244, 201, 93, 0.38), rgba(185, 223, 224, 0.36)),
    repeating-linear-gradient(0deg, rgba(34, 61, 37, 0.08) 0 2px, transparent 2px 18px);
}

.value-visual {
  background:
    linear-gradient(145deg, rgba(236, 244, 229, 0.96), rgba(217, 141, 95, 0.28)),
    repeating-linear-gradient(90deg, rgba(34, 61, 37, 0.08) 0 2px, transparent 2px 18px);
}

.event-visual {
  background:
    linear-gradient(145deg, rgba(255, 239, 186, 0.92), rgba(120, 165, 95, 0.28)),
    radial-gradient(circle at 35% 35%, rgba(217, 141, 95, 0.32), transparent 24%);
}

.culture-visual {
  background:
    linear-gradient(145deg, rgba(183, 123, 69, 0.22), rgba(236, 244, 229, 0.95)),
    repeating-linear-gradient(45deg, rgba(63, 109, 66, 0.09) 0 10px, transparent 10px 24px);
}

.ticket-visual {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.9), rgba(244, 201, 93, 0.36)),
    repeating-linear-gradient(90deg, rgba(183, 123, 69, 0.12) 0 10px, transparent 10px 28px);
}

.detail-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
}

.detail-main,
.detail-side {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(68, 72, 54, 0.08);
  padding: clamp(24px, 4vw, 40px);
}

.detail-main {
  color: #465348;
  font-size: 18px;
}

.detail-main p:last-child {
  margin-bottom: 0;
}

.detail-side h2,
.detail-side h3 {
  margin-bottom: 18px;
}

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

.detail-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(68, 72, 54, 0.08);
  padding: 26px;
}

.detail-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.detail-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.process-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-list article {
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.process-list span {
  align-items: center;
  background: var(--green-700);
  border-radius: 999px;
  color: var(--cream);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  min-width: 42px;
  padding: 0 14px;
}

.process-list h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.process-list.large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-list.large article {
  padding: clamp(26px, 4vw, 42px);
}

.process-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-panel {
  align-items: start;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(68, 72, 54, 0.08);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  padding: clamp(26px, 5vw, 46px);
}

.split-panel p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 0;
}

.route-list,
.clean-list {
  color: var(--muted);
  margin: 0;
  padding-left: 22px;
}

.route-list li,
.clean-list li {
  margin-bottom: 10px;
}

.route-list li:last-child,
.clean-list li:last-child {
  margin-bottom: 0;
}

.mini-map {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(185, 223, 224, 0.84) 0 34%, rgba(236, 244, 229, 0.98) 34% 100%);
  border: 1px solid rgba(63, 109, 66, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.mini-map::before {
  background: rgba(255, 253, 247, 0.58);
  border: 2px dashed rgba(34, 61, 37, 0.22);
  border-radius: 50%;
  content: "";
  height: 74%;
  left: 14%;
  position: absolute;
  top: 16%;
  transform: rotate(-14deg);
  width: 72%;
}

.map-zone {
  align-items: center;
  border: 2px solid var(--green-900);
  border-radius: 999px;
  box-shadow: 4px 4px 0 rgba(34, 61, 37, 0.18);
  color: var(--green-900);
  display: flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 8px 12px;
  position: absolute;
  text-align: center;
  width: 138px;
}

.zone-a {
  background: var(--yellow-soft);
  left: 14%;
  top: 18%;
}

.zone-b {
  background: var(--green-100);
  right: 14%;
  top: 26%;
}

.zone-c {
  background: #f7e2d5;
  left: 20%;
  bottom: 20%;
}

.zone-d {
  background: #dff0d0;
  right: 18%;
  bottom: 16%;
}

.table-list {
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(68, 72, 54, 0.08);
  overflow: hidden;
}

.table-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 0.7fr 0.8fr 1.6fr;
  padding: 18px 22px;
}

.table-row + .table-row {
  border-top: 1px solid var(--line);
}

.table-head {
  background: var(--green-900);
  color: var(--cream);
  font-weight: 800;
}

.detail-info {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-faq {
  max-width: 1000px;
}

.page-cta {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.page-cta h2 {
  max-width: 780px;
}

@media (max-width: 1020px) {
  .hero,
  .intro-grid,
  .booking-layout,
  .events-layout,
  .value-layout,
  .page-hero-grid,
  .detail-layout,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .course-grid,
  .info-board,
  .detail-grid,
  .detail-grid.four,
  .process-list,
  .detail-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zone-grid,
  .culture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    max-height: 520px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding: 0 16px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 70;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    align-items: stretch;
    background: rgba(255, 253, 247, 0.98);
    border-left: 1px solid var(--line);
    bottom: 0;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 90px 22px 22px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    width: min(82vw, 340px);
    z-index: 60;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 13px 14px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(54px, 18vw, 86px);
  }

  .hero-stats,
  .course-grid,
  .zone-grid,
  .culture-grid,
  .info-board,
  .booking-form,
  .detail-grid,
  .detail-grid.four,
  .process-list,
  .process-list.large,
  .detail-info {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .page-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .map-zone {
    width: 124px;
  }

  .family-dot.adult {
    left: 43%;
  }

  .family-dot.child {
    left: 56%;
  }
}

@media (max-width: 520px) {
  .section,
  .section-band {
    padding: 54px 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 300px;
  }

  .barn {
    left: 8%;
    transform: scale(0.86);
  }

  .chick-large {
    right: 18%;
    transform: scale(0.86);
  }

  .chick-small {
    right: 2%;
    transform: scale(0.88);
  }

  .value-timeline article {
    align-items: start;
    grid-template-columns: 1fr;
  }

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