/* 红玛瑙枸杞观光园 · 官网样式 */
:root {
  --goji: #a92a2d;
  --goji-deep: #6d1518;
  --goji-dark: #461012;
  --goji-soft: #f7e4dc;
  --sun: #d9912e;
  --sun-soft: #f8e8c8;
  --wheat: #faf3e7;
  --paper: #fffdf8;
  --ink: #2b211c;
  --muted: #6d5e54;
  --sage: #5f7a55;
  --sage-soft: #e9efe1;
  --sky: #5d7f94;
  --sky-soft: #e4eef2;
  --line: #e6d6c7;
  --white: #ffffff;
  --shadow: 0 16px 44px rgba(70, 18, 16, .1);
  --shadow-soft: 0 8px 24px rgba(70, 18, 16, .07);
  --serif: "Noto Serif CJK SC", "Songti SC", "STSong", "SimSun", serif;
  --sans: "Noto Sans CJK SC", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 600;
  background: var(--goji-deep);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 顶部导航 */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 253, 248, .92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  width: min(1240px, 100%);
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--goji-deep);
  color: var(--white);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .22);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-name {
  display: block;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.brand-sub {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: background .2s, color .2s;
}

.nav-desktop a:hover {
  color: var(--goji);
  background: var(--goji-soft);
}

.nav-desktop a.active {
  color: var(--goji-deep);
  background: var(--goji-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.btn-primary {
  background: var(--goji);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(169, 42, 45, .28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--goji-deep);
  box-shadow: 0 14px 30px rgba(169, 42, 45, .34);
}

.btn-ghost {
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .42);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .24);
}

.btn-outline {
  background: transparent;
  color: var(--goji-deep);
  border: 1px solid var(--goji);
}

.btn-outline:hover {
  background: var(--goji-soft);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  place-items: center;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 auto;
  z-index: 99;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 10px 24px 22px;
  box-shadow: var(--shadow-soft);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 8px;
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--goji-deep);
  background: var(--goji-soft);
}

/* 首页首屏 */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(30, 9, 8, .92) 0%, rgba(30, 9, 8, .72) 46%, rgba(30, 9, 8, .18) 100%),
    linear-gradient(0deg, rgba(30, 9, 8, .78) 0%, rgba(30, 9, 8, 0) 48%);
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 150px 24px 120px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #f6c99a;
  font-size: 14px;
  font-weight: 800;
}

.hero-kicker::before {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--sun);
}

.hero h1 {
  font-family: var(--serif);
  font-size: 4.1rem;
  line-height: 1.12;
  max-width: 760px;
  margin-bottom: 20px;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .28);
}

.hero-sub {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.08rem;
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  max-width: 620px;
  min-height: 40px;
  margin-bottom: 26px;
  padding: 8px 16px;
  border: 1px solid rgba(246, 201, 154, .55);
  border-radius: 8px;
  background: rgba(246, 201, 154, .14);
  color: #f8e3c6;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
}

.hero-meta svg {
  width: 15px;
  height: 15px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  animation: cue-bob 1.8s ease-in-out infinite;
}

@keyframes cue-bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

/* 通用区块 */
.section {
  padding: 92px 24px;
}

.section-tight {
  padding: 68px 24px;
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--goji);
  font-size: 13px;
  font-weight: 800;
}

.section-eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--sun);
}

.section-head.center .section-eyebrow::after {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--sun);
}

.section-title {
  font-family: var(--serif);
  font-size: 2.7rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-lead {
  color: var(--muted);
  font-size: 1rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.icon-tile {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--goji-soft);
  color: var(--goji-deep);
}

.icon-tile svg {
  width: 24px;
  height: 24px;
}

/* 亮点卡片 */
.highlights {
  background: var(--wheat);
}

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

.highlight-card {
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
}

.highlight-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.highlight-media img,
.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card .icon-tile {
  background: var(--sun-soft);
  color: #8a5610;
}

.highlight-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.3;
}

.highlight-card p {
  color: var(--muted);
  font-size: .98rem;
}

.highlight-card .card-num {
  margin-top: auto;
  color: var(--goji);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 800;
}

/* 走进园区 */
.about-preview {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.visual-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(46, 16, 14, .78);
  color: var(--white);
  font-size: 13px;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.35;
}

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

.story-quote {
  padding-left: 18px;
  border-left: 4px solid var(--sun);
  color: var(--goji-deep);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--goji);
  font-weight: 800;
  font-size: .95rem;
}

.link-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform .2s;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

/* 观光体验预览 */
.experience-preview {
  background: var(--sage-soft);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
}

.step-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 800;
}

.step-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.3;
}

.step-card p {
  color: var(--muted);
  font-size: .95rem;
}

.step-tip {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--sun-soft);
  color: #7d5412;
  font-size: .86rem;
}

/* 好物预览 */
.products-preview {
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 430px;
  transition: transform .25s, box-shadow .25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sage-soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-tag {
  color: var(--goji);
  font-size: .86rem;
  font-weight: 800;
}

.product-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.3;
}

.product-body p {
  color: var(--muted);
  font-size: .92rem;
}

.product-body .link-arrow {
  margin-top: auto;
}

/* 游客心声 */
.voices-preview {
  background: var(--wheat);
}

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

.voice-card {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.voice-photo {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-soft);
}

.voice-stars {
  color: var(--sun);
  font-size: 1rem;
  letter-spacing: 2px;
}

.voice-card blockquote {
  color: var(--ink);
  font-size: .98rem;
  flex: 1;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 800;
  font-size: .95rem;
}

.voice-author strong {
  display: block;
  font-size: .95rem;
}

.voice-author span {
  color: var(--muted);
  font-size: .82rem;
}

/* 攻略速览 */
.guide-strip {
  background: var(--goji-deep);
  color: var(--white);
}

.guide-strip .section-title {
  color: var(--white);
}

.guide-strip .section-eyebrow {
  color: #f6c99a;
}

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

.fact-card {
  padding: 24px 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.fact-card .icon-tile {
  background: rgba(255, 255, 255, .14);
  color: #f6c99a;
}

.fact-card strong {
  display: block;
  font-size: .96rem;
  margin-bottom: 4px;
}

.fact-card p {
  color: rgba(255, 255, 255, .78);
  font-size: .86rem;
}

/* 新闻 */
.news-preview {
  background: var(--paper);
}

.news-feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--goji);
  font-size: .9rem;
  font-weight: 800;
}

.news-feature h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1.35;
  margin-bottom: 16px;
}

.news-feature p {
  color: var(--muted);
  margin-bottom: 20px;
}

.news-media {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 页脚 / 联系我们 */
.contact-band {
  background: var(--goji-dark);
  color: var(--white);
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 52px;
}

.contact-slogan {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 18px;
}

.contact-intro {
  color: rgba(255, 255, 255, .78);
  max-width: 420px;
}

.contact-form {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  padding: 28px;
}

.contact-form .form-note {
  color: #f6c99a;
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(255, 255, 255, .82);
  font-size: .86rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  padding: 10px 14px;
  transition: border-color .2s, background .2s;
}

.form-field textarea {
  min-height: 96px;
  resize: vertical;
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .8) 50%), linear-gradient(135deg, rgba(255, 255, 255, .8) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.form-field select option {
  color: var(--ink);
  background: var(--paper);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, .5);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #f6c99a;
  background: rgba(255, 255, 255, .16);
  outline: 0;
}

.form-success {
  display: none;
  padding: 18px;
  border-radius: 8px;
  background: rgba(95, 122, 85, .35);
  border: 1px solid rgba(255, 255, 255, .24);
  color: #f6e2b0;
  font-size: .95rem;
}

.form-success.visible {
  display: block;
}

.contact-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item .icon-tile {
  background: rgba(255, 255, 255, .12);
  color: #f6c99a;
}

.contact-item strong {
  display: block;
  font-size: .95rem;
  margin-bottom: 4px;
}

.contact-item p {
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
}

.site-footer {
  background: #2a0d0e;
  color: rgba(255, 255, 255, .72);
  padding: 26px 24px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
}

/* 内页转化条 */
.cta-band {
  background: var(--goji-deep);
  color: var(--white);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-inner h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.35;
}

.cta-inner p {
  color: rgba(255, 255, 255, .8);
  margin-top: 6px;
}

.cta-inner .btn {
  flex: 0 0 auto;
}

/* 内页头图 */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.page-hero .hero-media {
  z-index: -2;
}

.page-hero .hero-veil {
  z-index: -1;
  background: linear-gradient(180deg, rgba(30, 9, 8, .55) 0%, rgba(30, 9, 8, .62) 100%);
}

.page-hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 120px 24px 56px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .72);
}

.breadcrumb a:hover {
  color: #f6c99a;
}

.breadcrumb span[aria-current="page"] {
  color: var(--white);
  font-weight: 800;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.page-hero .hero-sub {
  color: rgba(255, 255, 255, .86);
  margin-bottom: 0;
  font-size: 1rem;
}

/* 关于我们 */
.story-page {
  background: var(--paper);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: start;
}

.story-body {
  display: grid;
  gap: 24px;
}

.story-body p {
  font-size: 1.03rem;
  color: #40332c;
}

.story-body p:first-child::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 3.3rem;
  line-height: 1;
  padding: 6px 10px 0 0;
  color: var(--goji);
}

.story-close {
  padding: 26px 24px;
  border-left: 4px solid var(--sun);
  background: var(--goji-soft);
  border-radius: 0 8px 8px 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--goji-deep);
}

.story-aside {
  display: grid;
  gap: 18px;
}

.story-aside .visual-frame {
  aspect-ratio: 4 / 4.6;
}

.mini-note {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.mini-note h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.mini-note p {
  color: var(--muted);
  font-size: .92rem;
}

/* 文化页 */
.culture-page {
  background: var(--wheat);
}

.culture-list {
  display: grid;
  gap: 28px;
}

.culture-block {
  padding: 34px 36px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
}

.culture-num {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--goji);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 800;
}

.culture-block h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.culture-block p {
  color: #463931;
  margin-bottom: 12px;
}

.culture-quote {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--sun-soft);
  color: #7d5412;
  font-size: .96rem;
}

.culture-closing {
  max-width: 760px;
  margin: 44px auto 0;
  padding: 26px 30px;
  text-align: center;
  background: var(--goji-deep);
  color: var(--white);
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
}

/* 体验页 */
.experience-page {
  background: var(--paper);
}

.exp-list {
  display: grid;
  gap: 44px;
}

.exp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.exp-row:nth-child(even) .exp-media {
  order: 2;
}

.exp-media {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.exp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-copy {
  display: grid;
  gap: 14px;
}

.exp-label {
  color: var(--goji);
  font-size: .88rem;
  font-weight: 800;
}

.exp-copy h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.3;
}

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

.tip-box {
  justify-self: start;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--sun-soft);
  color: #7d5412;
  font-size: .9rem;
}

.tip-box svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
}

/* 好物页 */
.products-page {
  background: var(--wheat);
}

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

.goods-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  min-height: 360px;
}

.goods-media {
  min-height: 300px;
  background: var(--sage-soft);
}

.goods-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.goods-body {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.goods-tagline {
  color: var(--goji);
  font-size: 1rem;
  font-weight: 800;
}

.goods-body h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.3;
}

.goods-body p {
  color: var(--muted);
  font-size: .95rem;
}

.why-us {
  margin-top: auto;
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--sage-soft);
  color: #42532d;
  font-size: .9rem;
  font-weight: 700;
}

.goods-note {
  max-width: 780px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--muted);
}

.new-cat {
  margin: 54px 0 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.new-cat h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.3;
}

.new-cat p {
  color: var(--muted);
  font-size: .92rem;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--goji-soft);
  color: var(--goji-deep);
  font-size: .84rem;
  font-weight: 800;
}

.play-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.play-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  min-height: 320px;
}

.play-media {
  min-height: 280px;
  background: var(--sage-soft);
}

.play-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.play-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.3;
}

.play-body p {
  color: var(--muted);
  font-size: .95rem;
}

/* 心声页 */
.voices-page {
  background: var(--paper);
}

.voices-page .voice-card {
  box-shadow: var(--shadow-soft);
}

.voices-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.summary-item {
  padding: 22px;
  text-align: center;
  background: var(--wheat);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--goji);
}

.summary-item span {
  color: var(--muted);
  font-size: .88rem;
}

/* 攻略页 */
.guide-page {
  background: var(--paper);
}

.guide-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: start;
}

.guide-card {
  padding: 30px 32px;
  display: grid;
  gap: 12px;
}

.guide-card + .guide-card {
  margin-top: 20px;
}

.guide-card h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.3;
}

.guide-card p {
  color: var(--muted);
}

.guide-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 26px;
  border-radius: 8px;
  background: var(--goji-deep);
  color: var(--white);
  display: grid;
  gap: 10px;
}

.side-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.side-card p {
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
}

.side-card .link-arrow {
  color: #f6c99a;
}

.side-note {
  padding: 22px;
  border-radius: 8px;
  background: var(--sage-soft);
  color: #42532d;
}

.side-note strong {
  display: block;
  margin-bottom: 6px;
}

/* 新闻页 */
.news-page {
  background: var(--paper);
}

.article {
  max-width: 840px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--goji-soft);
  color: var(--goji-deep);
  font-size: .84rem;
  font-weight: 800;
}

.article-hero {
  aspect-ratio: 16 / 8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 18px;
}

.article-body {
  display: grid;
  gap: 20px;
  color: #44362e;
  font-size: 1.03rem;
}

.article-callout {
  padding: 20px 22px;
  border-radius: 8px;
  background: var(--sun-soft);
  color: #7d5412;
  font-weight: 800;
}

.article-cta {
  margin-top: 36px;
  padding: 28px;
  text-align: center;
  border-radius: 8px;
  background: var(--goji-deep);
  color: var(--white);
}

.article-cta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.article-cta p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 18px;
}

/* 联系页 */
.contact-page {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: 20px;
}

.contact-aside .card {
  padding: 28px;
}

.contact-photo {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-aside h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.contact-aside p {
  color: var(--muted);
}

.contact-form-card {
  background: var(--goji-deep);
  color: var(--white);
  padding: 34px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form-card .form-note {
  color: #f6c99a;
  font-weight: 800;
  margin-bottom: 22px;
}

/* 通用工具 */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--goji);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(169, 42, 45, .34);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-3px);
}

.back-top svg {
  width: 20px;
  height: 20px;
}

/* 预约模态框 */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(26, 9, 8, .78);
}

.booking-modal.open {
  display: flex;
}

.booking-modal-shell {
  position: relative;
  width: min(560px, 100%);
  padding: 38px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.booking-modal-shell h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.booking-modal-shell > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.booking-options {
  display: grid;
  gap: 12px;
}

.booking-option {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wheat);
  font-weight: 800;
  transition: border-color .2s, background .2s, transform .2s;
}

.booking-option:hover {
  border-color: var(--goji);
  background: var(--goji-soft);
  transform: translateY(-2px);
}

.booking-option .icon-tile {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.booking-option small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.booking-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--goji-soft);
  color: var(--goji-deep);
  font-size: 22px;
}

.tel-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 门票信息 */
.ticket-info {
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--sun-soft);
  color: #7d5412;
}

.ticket-info p {
  font-weight: 800;
  margin-bottom: 10px;
}

.ticket-info li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.ticket-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
}

.ticket-note {
  margin-top: 8px;
  font-size: .9rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    min-height: 44px;
    padding: 8px 14px;
  }

  .highlight-grid,
  .step-grid,
  .product-grid,
  .voice-grid,
  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .section {
    padding: 72px 20px;
  }

  .section-tight {
    padding: 56px 20px;
  }

  .split,
  .news-feature,
  .exp-row,
  .guide-layout,
  .contact-layout,
  .contact-top,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .exp-row:nth-child(even) .exp-media {
    order: 0;
  }

  .guide-side {
    position: static;
  }

  .hero h1 {
    font-size: 3rem;
  }

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

  .page-hero h1 {
    font-size: 2.4rem;
  }

  .culture-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .goods-media {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .mobile-nav {
    inset: 64px 0 auto;
    padding: 8px 16px 18px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-sub {
    display: none;
  }

  .hero-inner {
    padding: 120px 18px 100px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-sub {
    font-size: .98rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .highlight-grid,
  .step-grid,
  .product-grid,
  .voice-grid,
  .fact-grid,
  .contact-bottom,
  .voices-summary {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .highlight-card,
  .step-card,
  .voice-card {
    min-height: 0;
  }

  .product-card {
    min-height: 0;
  }

  .contact-form {
    padding: 20px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .contact-top {
    gap: 36px;
  }

  .contact-slogan {
    font-size: 1.8rem;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .article h2 {
    font-size: 1.75rem;
  }

  .culture-block {
    padding: 26px 22px;
  }
}

@media (max-width: 428px) {
  body {
    font-size: 16px;
  }

  .brand-sub,
  .hero-kicker,
  .hero-meta span,
  .section-eyebrow,
  .card-num,
  .product-tag,
  .step-tip,
  .voice-author span,
  .fact-card p,
  .contact-item p,
  .footer-inner,
  .breadcrumb,
  .tag,
  .form-field label,
  .price-chip,
  .why-us,
  .visual-caption,
  .news-date,
  .exp-label,
  .goods-tagline,
  .summary-item span,
  .side-note,
  .link-arrow,
  .tip-box,
  .hero-sub,
  .section-lead,
  .news-feature p,
  .scroll-cue,
  .booking-option small {
    font-size: 14px;
  }

  .btn {
    min-height: 46px;
  }

  .booking-modal-shell {
    padding: 26px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
