:root {
  --grape: #5b244f;
  --grape-deep: #351a32;
  --leaf: #3d6b3f;
  --leaf-soft: #e8f1e5;
  --sun: #d59b42;
  --paper: #fffaf0;
  --cream: #f7f0df;
  --ink: #241d22;
  --muted: #6c6467;
  --line: rgba(53, 26, 50, 0.14);
  --shadow: 0 18px 48px rgba(37, 22, 34, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(36, 25, 33, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--grape);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.desktop-nav a:hover,
.header-call:hover {
  color: #fff;
}

.header-call {
  padding: 8px 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 92svh;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 14, 23, 0.82), rgba(23, 14, 23, 0.34) 54%, rgba(23, 14, 23, 0.12)),
    linear-gradient(0deg, rgba(27, 18, 24, 0.65), rgba(27, 18, 24, 0.08) 38%);
}

.hero-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 36px));
  padding: 96px 0 86px;
  margin-left: clamp(18px, 8vw, 112px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

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

.button.primary {
  color: #fff;
  background: var(--grape);
  box-shadow: 0 14px 32px rgba(91, 36, 79, 0.28);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.12);
}

.button.outline {
  color: var(--grape);
  border-color: rgba(91, 36, 79, 0.28);
  background: #fff;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-facts span {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.section {
  padding: clamp(62px, 8vw, 104px) 0;
}

.section-inner {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

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

.center-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.center-heading p:not(.section-kicker) {
  color: var(--muted);
}

h2 {
  margin: 0;
  color: var(--grape-deep);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--grape-deep);
  font-size: 19px;
  line-height: 1.35;
}

p {
  margin: 14px 0 0;
}

.eco-section {
  background: #fff;
}

.eco-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.eco-layout p {
  color: var(--muted);
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(70, 46, 64, 0.08);
}

.stats-panel div {
  min-height: 148px;
  padding: 26px 18px;
  background: var(--paper);
}

.stats-panel strong {
  display: block;
  color: var(--grape);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.stats-panel span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

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

.advantage,
.steps article,
.contact-panel,
.map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(70, 46, 64, 0.08);
}

.advantage {
  min-height: 230px;
  padding: 24px;
}

.advantage p,
.steps p,
.season-layout p,
.picking-grid p,
.contact-grid p,
.location-grid p {
  color: var(--muted);
}

.icon-dot {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 22px;
  background: radial-gradient(circle at 35% 35%, #b672a6, var(--grape));
  border-radius: 50%;
  box-shadow:
    13px 5px 0 rgba(61, 107, 63, 0.42),
    6px 17px 0 rgba(213, 155, 66, 0.42);
}

.video-section {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), #244d36);
}

.journey-section {
  background: var(--leaf-soft);
}

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

.journey-grid article,
.nutrition-grid article,
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(70, 46, 64, 0.08);
}

.journey-grid article {
  min-height: 218px;
  padding: 28px 24px;
}

.journey-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--grape);
  background: #efdfff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
}

.journey-grid article:nth-child(2) span {
  color: #157b40;
  background: #d7f8df;
}

.journey-grid p,
.nutrition-grid p,
.price-card p,
.price-card li {
  color: var(--muted);
}

.video-section h2,
.video-section .section-kicker {
  color: #fff;
}

.video-section p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.84);
}

.video-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.video-frame {
  overflow: hidden;
  background: #151114;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-section {
  background: var(--cream);
}

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

figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: #ddd;
  border-radius: 8px;
}

figure img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(36, 25, 33, 0.72);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.season-layout,
.contact-grid,
.location-grid,
.picking-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-list dt {
  color: var(--grape);
  font-weight: 900;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.nutrition-section {
  background: #fff;
}

.nutrition-grid article {
  min-height: 260px;
  padding: 28px 26px;
}

.soft-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--grape);
  background: #f5eaff;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
}

.nutrition-grid article:nth-child(2) .soft-icon {
  color: #7b5514;
  background: #fff3c8;
}

.nutrition-grid article:nth-child(3) .soft-icon {
  color: var(--leaf);
  background: #e4f6e4;
}

.picking-section {
  background: #fff;
}

.picking-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--grape-deep);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--leaf);
  border-radius: 50%;
  transform: translateY(-50%);
}

.steps-section {
  background: var(--leaf-soft);
}

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

.steps article {
  min-height: 210px;
  padding: 24px;
}

.steps span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--sun);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.price-section {
  background: #f5f7fa;
}

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

.price-card {
  position: relative;
  padding: clamp(26px, 4vw, 36px);
}

.price-card.featured {
  border-color: rgba(91, 36, 79, 0.38);
  box-shadow: 0 18px 44px rgba(91, 36, 79, 0.14);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  padding: 3px 14px;
  color: #fff;
  background: var(--grape);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transform: translateX(-50%);
}

.price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 24px 0 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.price strong {
  color: var(--grape);
  font-size: clamp(38px, 5vw, 52px);
  line-height: 0.95;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--sun);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-section {
  background: var(--grape-deep);
}

.contact-section h2,
.contact-section .section-kicker {
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

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

.contact-label {
  margin: 0 0 10px;
  color: var(--muted) !important;
  font-size: 15px;
  font-weight: 800;
}

.contact-panel strong {
  display: block;
  color: var(--grape);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.small-note {
  color: var(--muted) !important;
  font-size: 14px;
}

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

.map-card {
  min-height: 280px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(53, 26, 50, 0.9), rgba(61, 107, 63, 0.86)),
    url("assets/location.jpg") center / cover;
}

.map-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: #f4d28a;
  font-weight: 900;
}

.map-card strong {
  display: block;
  max-width: 420px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
}

.map-card p {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  padding: 34px 18px 96px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  background: #21141f;
}

.site-footer p {
  margin: 6px 0;
}

.site-footer p:first-child {
  color: #fff;
  font-weight: 900;
}

.mobile-contact {
  position: fixed;
  z-index: 30;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(37, 22, 34, 0.2);
}

.mobile-contact a {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--grape);
  font-size: 14px;
  font-weight: 900;
}

.mobile-contact a + a {
  border-left: 1px solid var(--line);
}

.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 76px;
  padding: 10px 16px;
  color: #fff;
  pointer-events: none;
  visibility: hidden;
  background: rgba(36, 25, 33, 0.92);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

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

  .advantage-grid,
  .gallery-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-layout,
  .video-grid,
  .season-layout,
  .contact-grid,
  .location-grid,
  .picking-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid,
  .nutrition-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 58px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-call {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 58px;
    background: var(--grape-deep);
  }

  .hero-image {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 24px 0 54px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-facts span {
    font-size: 13px;
  }

  .advantage-grid,
  .gallery-grid,
  .steps,
  .stats-panel,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .advantage,
  .steps article {
    min-height: auto;
  }

  figure,
  figure img {
    min-height: 280px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-panel strong {
    font-size: 36px;
  }

  .mobile-contact {
    display: grid;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}
