:root {
  --ink: #25332d;
  --muted: #69736e;
  --paper: #fdfcf8;
  --green: #004d40;
  --orange: #ff8f00;
  --line: rgba(0, 77, 64, 0.16);
}

/* Shared editorial scroll reveal */
.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) var(--reveal-delay, 0ms),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  animation: fadeUpIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 77, 64, 0.1);
  background: rgba(253, 252, 248, 0.94);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(1200px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--green);
  font-size: 17px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  padding: 31px 0 27px;
  color: #53625c;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--green);
  font-weight: 600;
}

.home-header {
  position: absolute;
  right: 0;
  left: 0;
  border-bottom-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(rgba(0, 0, 0, 0.2), transparent);
  backdrop-filter: none;
}

.home-header .brand,
.home-header .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

.home-header .brand-mark {
  border-color: rgba(255, 255, 255, 0.7);
}

.home-header .nav-links a:hover {
  color: var(--orange);
}

.home-header .nav-links a.active {
  color: #fff;
}

.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("assets/story-orchard-hero.png") center / cover;
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(3px) saturate(0.94);
  transform: scale(1.025);
  animation: homeBackgroundBreath 16s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.home-hero::after {
  position: absolute;
  inset: -3%;
  background: url("assets/story-orchard-hero.png") center / cover;
  content: "";
  filter: blur(3px) saturate(0.94);
  transform: scale(1.025);
  animation: homeBackgroundBreath 16s ease-in-out infinite alternate;
  opacity: 1;
  transition: opacity 1.2s ease;
  will-change: transform, filter;
}

.home-hero.video-ready::after {
  opacity: 0;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 35, 29, 0.3),
    rgba(0, 25, 20, 0.24) 48%,
    rgba(0, 25, 20, 0.42)
  );
  content: "";
  z-index: 1;
}

@keyframes homeBackgroundBreath {
  0% {
    filter: blur(2.5px) saturate(0.94);
    transform: scale(1.025) translate3d(0, 0, 0);
  }

  100% {
    filter: blur(4px) saturate(1);
    transform: scale(1.065) translate3d(-0.6%, -0.4%, 0);
  }
}

.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px 0;
  color: #fff;
  text-align: center;
}

.home-hero h1 {
  margin: 0 0 30px;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.home-hero p {
  margin: 0;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 4px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.text-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  letter-spacing: 0.15em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  transition: color 0.3s ease;
}

.text-arrow-link span {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  transition: transform 0.3s ease;
}

.text-arrow-link:hover {
  color: var(--orange);
}

.text-arrow-link:hover span {
  transform: translateX(8px);
}

.home-fresh-showcase {
  overflow: hidden;
  padding: 96px 0 112px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 143, 0, 0.16), transparent 30%),
    linear-gradient(135deg, #0d3f34, #092a24);
  color: #fff;
}

.home-fresh-heading {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 46px;
}

.home-fresh-heading p {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.home-fresh-heading h2 {
  max-width: 720px;
  margin: 0;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.home-fresh-marquee {
  position: relative;
  width: 100%;
}

.home-fresh-marquee::before,
.home-fresh-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 170px);
  pointer-events: none;
  content: "";
}

.home-fresh-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0d3f34, rgba(13, 63, 52, 0));
}

.home-fresh-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #092a24, rgba(9, 42, 36, 0));
}

.home-fresh-track {
  display: flex;
  width: max-content;
  gap: 26px;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  animation: freshMarquee 34s linear infinite;
}

.home-fresh-marquee:hover .home-fresh-track {
  animation-play-state: paused;
}

.home-fresh-card {
  position: relative;
  flex: 0 0 clamp(260px, 24vw, 360px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.home-fresh-card.wide {
  flex-basis: clamp(310px, 30vw, 440px);
}

.home-fresh-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  transform: scale(1.08);
  filter: saturate(0.96) contrast(1.04);
}

@keyframes freshMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 13px));
  }
}

.products-hero {
  height: 40vh;
  min-height: 350px;
  display: grid;
  place-items: center;
  background: #fef9f3;
  text-align: center;
}

.products-hero h1 {
  margin: 0;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.products-hero h1::after {
  display: block;
  width: 40px;
  height: 2px;
  margin: 26px auto 0;
  background: var(--orange);
  content: "";
}

.mobile-break {
  display: none;
}

.product-gallery {
  width: min(1200px, calc(100% - 48px));
  margin: 140px auto 180px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 110px;
}

.product-piece {
  margin: 0;
}

.product-piece:nth-child(even) {
  transform: translateY(120px);
}

.product-piece img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
}

.product-piece:nth-child(4n + 1) img {
  aspect-ratio: 4 / 5;
  object-position: 67% center;
}

.product-piece:nth-child(4n + 2) img {
  aspect-ratio: 5 / 4;
  object-position: 77% center;
}

.product-piece:nth-child(4n + 3) img {
  aspect-ratio: 5 / 4;
  object-position: center;
}

.product-piece:nth-child(4n + 4) img {
  aspect-ratio: 4 / 5;
  object-position: 70% center;
}

.product-copy {
  padding-top: 24px;
}

.product-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.product-copy p {
  margin: 12px 0 0;
  color: #a0a7a3;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.product-section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 160px 0;
}

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

.product-section-heading-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.product-section-heading p,
.product-feature-kicker {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.product-section-heading h2,
.product-feature-copy h2 {
  margin: 0;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.varieties {
  padding-top: 170px;
}

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

.variety-tile {
  min-height: 360px;
  padding: 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #f7f2e9;
}

.variety-tile-accent {
  background: #f1f5ed;
}

.variety-tile span {
  margin-bottom: auto;
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.variety-tile h3 {
  margin: 50px 0 20px;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.variety-tile p {
  max-width: 430px;
  margin: 0;
  color: #69736e;
  font-size: 16px;
  line-height: 2;
}

.product-feature {
  min-height: 84vh;
  display: grid;
  grid-template-columns: 56% 44%;
  background: #f7f3eb;
}

.product-feature-image {
  min-height: 720px;
  background: url("assets/story-orchard-hero.png") 72% center / cover;
}

.product-feature-copy {
  padding: 100px clamp(48px, 7vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-feature-copy > p:not(.product-feature-kicker) {
  max-width: 520px;
  margin: 36px 0 0;
  color: #69736e;
  font-size: 16px;
  line-height: 2.1;
}

.feature-notes {
  margin: 58px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-notes div {
  border-top: 1px solid rgba(0, 77, 64, 0.2);
  padding-top: 16px;
}

.feature-notes dt {
  color: #9ca49f;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.feature-notes dd {
  margin: 10px 0 0;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 17px;
}

.specifications {
  padding-top: 180px;
  padding-bottom: 180px;
}

.spec-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: #fff;
  text-align: left;
}

.spec-table th,
.spec-table td {
  padding: 30px 28px;
}

.spec-table thead {
  background: var(--green);
  color: #fff;
}

.spec-table thead th {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.spec-table tbody tr {
  border-bottom: 1px solid #e8e4dc;
}

.spec-table tbody th {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.spec-table tbody th span {
  margin-left: 4px;
  color: #8f9792;
  font-size: 12px;
  font-weight: 400;
}

.spec-table tbody td {
  color: #65706a;
  font-size: 15px;
}

.harvest-rhythm {
  padding-top: 180px;
  padding-bottom: 210px;
}

.harvest-timeline {
  position: relative;
  margin: 110px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.harvest-timeline::before {
  position: absolute;
  top: 57px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: #ded9d0;
  content: "";
}

.harvest-timeline li {
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.harvest-timeline li::before {
  position: absolute;
  top: 51px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.harvest-timeline span {
  display: block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.harvest-timeline h3 {
  margin: 18px 0 40px;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.harvest-timeline p {
  margin: 0;
  color: #7b847f;
  font-size: 14px;
  line-height: 1.9;
}

.story-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image: url("assets/story-tulou-orchard-hero.png");
  background-position: center;
  background-size: cover;
}

.story-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  content: "";
}

.story-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 24px;
  color: #fff;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.editorial {
  width: min(1200px, calc(100% - 48px));
  margin: 120px auto 140px;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
}

.editorial-copy {
  padding-right: 60px;
}

.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.editorial-kicker::before,
.editorial-kicker::after {
  width: 34px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.editorial-copy h2 {
  margin: 0 0 30px;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.editorial-copy p {
  margin: 0;
  color: #4f5954;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}

.editorial-media {
  margin: 0;
}

.editorial-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
}

.editorial-media figcaption {
  padding-top: 16px;
  color: #a0a7a3;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: center;
}

.story-chapter {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 160px 0;
}

.reverse-editorial {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: start;
}

.reverse-editorial .editorial-media img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.reverse-copy {
  align-self: start;
  padding-left: 70px;
}

.reverse-copy .editorial-kicker {
  margin-bottom: 26px;
}

.reverse-copy h2 {
  margin: 0 0 28px;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.reverse-copy p {
  margin: 0;
  color: #4f5954;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}

.seasons {
  text-align: center;
}

.seasons-intro {
  max-width: 800px;
  margin: 0 auto;
}

.seasons-intro h2 {
  margin: 0;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.seasons-intro h2::after {
  display: block;
  width: 40px;
  height: 1px;
  margin: 28px auto;
  background: var(--orange);
  content: "";
}

.seasons-intro p {
  margin: 0;
  color: #68736e;
  font-size: 16px;
  line-height: 2;
}

.season-gallery {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  text-align: left;
}

.season-item {
  margin: 0;
}

.season-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  object-fit: cover;
}

.season-item:nth-child(1) img {
  object-position: center 42%;
}

.season-item:nth-child(2) img {
  object-position: center 44%;
}

.season-item:nth-child(3) img {
  object-position: 58% center;
}

.season-item figcaption {
  padding-top: 16px;
  color: #a0a7a3;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.authority {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 160px 0 180px;
}

.authority-heading {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: end;
  gap: 60px;
  margin-bottom: 76px;
}

.authority-heading p {
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.authority-heading h2 {
  margin: 16px 0 0;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.authority-heading .authority-heading-copy {
  margin: 0;
  color: #737d78;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 2;
}

.authority-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  list-style: none;
}

.authority-item {
  border-top: 1px solid rgba(0, 77, 64, 0.24);
  padding-top: 28px;
}

.authority-number {
  display: block;
  color: var(--orange);
  font-family: "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.authority-item h3 {
  margin: 34px 0 18px;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.authority-item p {
  margin: 0;
  color: #7a847f;
  font-size: 14px;
  line-height: 2;
}

.authority-note {
  margin: 54px 0 0;
  color: #afb5b1;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: right;
}

.cinema-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.cinema-hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/story-orchard-hero.png") 70% center / cover;
  filter: saturate(0.8) contrast(1.08);
  transform: scale(1.02);
}

.cinema-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 28, 23, 0.9), rgba(0, 25, 20, 0.34) 58%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 48%, rgba(0, 0, 0, 0.2));
}

.cinema-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
}

.cinema-hero-copy p,
.craft-days header p,
.craft-film-copy > p:first-child,
.industry-hero > p,
.industry-muscle header p,
.industry-footprint > div p,
.contact-intro > p,
.contact-business > p:first-child {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.cinema-hero-copy h1 {
  margin: 0 0 28px;
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: clamp(76px, 10vw, 148px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.38);
}

.cinema-hero-copy span {
  color: rgba(255,255,255,.82);
  font-family: "Songti SC", serif;
  font-size: 22px;
  letter-spacing: .12em;
  text-shadow: 0 3px 12px rgba(0,0,0,.36);
}

.craft-days {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 170px 0;
}

.craft-days header h2,
.craft-film-copy h2,
.industry-muscle header h2,
.industry-footprint h2,
.contact-business h2 {
  margin: 0;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.35;
}

.craft-days header h2 strong {
  color: var(--orange);
  font-size: 1.35em;
}

.craft-steps {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 54px;
}

.craft-steps article {
  border-top: 1px solid rgba(0,77,64,.24);
  padding-top: 28px;
}

.craft-steps span { color: var(--orange); font: 16px "Times New Roman",serif; letter-spacing:.16em; }
.craft-steps span {
  display: block;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}
.craft-steps span::after {
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 22px;
  background: var(--orange);
  content: "";
}
.craft-steps h3 { margin: 42px 0 18px; color: var(--green); font: 400 26px "Songti SC",SimSun,serif; }
.craft-steps p { margin: 0; color: #727c77; font-size: 15px; line-height: 2; }

.craft-film {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 42% 58%;
  background: #123e34;
  color: #fff;
}

.craft-film-copy { padding: 110px clamp(48px,7vw,120px); display:flex; flex-direction:column; justify-content:center; }
.craft-film-copy h2 { color:#fff; }
.craft-film-copy > p:nth-of-type(2) { margin:36px 0 0; color:rgba(255,255,255,.7); line-height:2.1; }
.craft-film-copy blockquote { margin:56px 0 0; border-left:1px solid var(--orange); padding-left:22px; color:#f2bd6b; font-family:"Songti SC",serif; line-height:2; }
.craft-film-frame { position:relative; margin:0; min-height:720px; overflow:hidden; }
.craft-film-frame img { width:100%; height:100%; object-fit:cover; filter:saturate(.78) contrast(1.12); }
.craft-film-frame figcaption { position:absolute; right:24px; bottom:22px; color:rgba(255,255,255,.7); font-size:10px; letter-spacing:.12em; }

.industry-hero,
.contact-intro {
  min-height: 46vh;
  padding: 100px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:#fef9f3;
  text-align:center;
}

.industry-hero h1,
.contact-intro h1 { margin:0; color:var(--green); font:400 clamp(60px,8vw,110px) "Songti SC",SimSun,serif; letter-spacing:.12em; }
.industry-hero span,.contact-intro span { margin-top:30px; color:#71807a; font-size:17px; letter-spacing:.12em; }

.industry-muscle { width:min(1200px,calc(100% - 48px)); margin:0 auto; padding:160px 0 190px; }
.industry-muscle header { margin-bottom:70px; }
.industry-grid { display:grid; grid-template-columns:repeat(2,1fr) 2.1fr; grid-template-rows:repeat(2,280px); gap:24px; }
.industry-stat { padding:48px; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; background:#f4f1e9; }
.industry-stat strong { color:var(--orange); font:700 clamp(72px,8vw,118px) Arial,sans-serif; line-height:1; letter-spacing:-.07em; }
.industry-stat strong small { margin-left:5px; font-size:.18em; letter-spacing:0; }
.industry-stat span { margin-top:24px; color:var(--green); font-size:15px; letter-spacing:.12em; }
.stat-primary { background:var(--green); }
.stat-primary strong { color:#ffad2f; }
.stat-primary span { color:rgba(255,255,255,.8); }
.industry-image { grid-column:3; grid-row:1 / 3; margin:0; position:relative; overflow:hidden; }
.industry-image img { width:100%; height:100%; object-fit:cover; }
.industry-image figcaption { position:absolute; bottom:18px; left:20px; color:#fff; font-size:10px; letter-spacing:.12em; text-shadow:0 2px 8px #000; }

.industry-footprint { padding:150px max(24px,calc((100% - 1200px)/2)); display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:end; background:#123e34; color:#fff; }
.industry-footprint h2 { color:#fff; }
.industry-footprint > p { max-width:470px; margin:0; color:rgba(255,255,255,.7); line-height:2; }
.industry-footprint a { grid-column:2; color:#f4b556; font-size:18px; transition:transform .3s ease; }
.industry-footprint a:hover { transform:translateX(8px); }

.contact-page { background:#fdfcf8; }
.contact-layout { width:min(1200px,calc(100% - 48px)); margin:0 auto; padding:140px 0 170px; display:grid; grid-template-columns:.9fr 1.1fr; gap:100px; align-items:start; }
.contact-business { position:sticky; top:120px; padding-top:54px; }
.contact-business > span { display:block; margin:30px 0; color:var(--orange); font-weight:600; line-height:1.8; }
.contact-business > p:not(:first-child) { color:#717b76; line-height:2; }
.contact-business dl { margin:54px 0 0; }
.contact-business dl div { border-top:1px solid rgba(0,77,64,.18); padding:18px 0; display:grid; grid-template-columns:110px 1fr; gap:20px; }
.contact-business dt { color:#9da49f; font-size:12px; letter-spacing:.1em; }
.contact-business dd { margin:0; color:var(--green); font-size:14px; }
.contact-form { padding:54px; background:#f4f1e9; display:grid; gap:24px; }
.form-priority { padding:22px 24px; background:var(--green); color:#fff; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.form-priority span { color:#f2b04d; font-size:11px; letter-spacing:.16em; }
.form-priority strong { font:400 22px "Songti SC",serif; }
.contact-form label { display:grid; gap:10px; color:#51625b; font-size:13px; }
.contact-form input,.contact-form select,.contact-form textarea { width:100%; border:1px solid rgba(0,77,64,.14); border-radius:4px; padding:16px 14px; background:rgba(255,255,255,.62); color:var(--ink); font:inherit; outline:none; transition:border-color .25s ease,background .25s ease; }
.contact-form textarea { resize:vertical; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color:var(--orange); background:#fff; }
.contact-form button { border:0; padding:20px 24px; background:var(--green); color:#fff; font-size:15px; letter-spacing:.08em; cursor:pointer; transition:background .3s ease; }
.contact-form button:hover { background:var(--orange); }

.next-chapter {
  padding: 180px 24px 190px;
  background: #fefcf8;
  text-align: center;
}

.next-chapter-label {
  margin: 0 0 36px;
  color: #c3c8c5;
  font-family: "Times New Roman", "Songti SC", serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0.18em;
}

.next-chapter-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--green);
  font-family: "Songti SC", "STSong", SimSun, serif;
  font-size: 32px;
  letter-spacing: 0.08em;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.next-chapter-link:hover {
  color: var(--orange);
  transform: translateX(8px);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  color: #87908b;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }

  .home-hero-video {
    display: none;
  }

  .home-hero::after {
    animation: none;
    filter: blur(3px) saturate(0.94);
    transform: scale(1.035);
  }

  .home-fresh-track {
    animation: none;
  }
}

@media (max-width: 900px) {
  .site-nav {
    width: min(100% - 32px, 1200px);
    height: auto;
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 16px 0 10px;
  }

  .nav-links {
    width: 100%;
    gap: 24px;
    overflow-x: auto;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 12px 0;
  }

  .nav-links a::after {
    bottom: 6px;
  }

  .story-hero {
    height: 52vh;
    min-height: 360px;
  }

  .story-hero h1 {
    width: calc(100% - 36px);
    font-size: clamp(32px, 9vw, 44px);
    letter-spacing: 2px;
    line-height: 1.7;
  }

  .home-header {
    position: absolute;
  }

  .home-hero {
    min-height: 650px;
  }

  .home-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
    letter-spacing: 0.08em;
  }

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

  .products-hero h1 {
    width: calc(100% - 48px);
    padding: 0 24px;
    font-size: clamp(34px, 8vw, 46px);
    letter-spacing: 0.08em;
    line-height: 1.5;
  }

  .mobile-break {
    display: block;
  }

  .product-gallery {
    width: min(100% - 36px, 1200px);
    margin: 90px auto 110px;
    grid-template-columns: minmax(0, 1fr);
    gap: 70px;
  }

  .product-piece:nth-child(even) {
    transform: none;
  }

  .product-section {
    width: min(100% - 36px, 1200px);
    padding: 100px 0;
  }

  .product-section-heading {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 48px;
  }

  .product-section-heading h2,
  .product-feature-copy h2 {
    max-width: 100%;
    font-size: 34px;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .variety-tiles {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .variety-tile {
    width: 100%;
    min-width: 0;
    min-height: 320px;
    padding: 36px 28px;
  }

  .variety-tile h3 {
    font-size: 29px;
  }

  .variety-tile p,
  .product-feature-copy > p:not(.product-feature-kicker) {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .product-feature {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .product-feature-image {
    min-height: 62vh;
    background-position: 68% center;
  }

  .product-feature-copy {
    padding: 80px 24px 90px;
  }

  .feature-notes {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .specifications {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .spec-table th,
  .spec-table td {
    padding: 22px 20px;
  }

  .harvest-timeline {
    margin-top: 70px;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .harvest-timeline::before {
    top: 0;
    bottom: 0;
    left: 20px;
    width: 1px;
    height: auto;
  }

  .harvest-timeline li {
    min-height: 170px;
    padding: 0 0 54px 64px;
    text-align: left;
  }

  .harvest-timeline li::before {
    top: 5px;
    left: 14px;
  }

  .harvest-timeline h3 {
    margin: 10px 0 16px;
  }

  .editorial {
    width: min(100% - 36px, 1200px);
    margin: 80px auto 100px;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .editorial-copy {
    padding-right: 0;
  }

  .editorial-copy,
  .editorial-media,
  .reverse-copy,
  .seasons-intro,
  .season-gallery,
  .season-item,
  .next-chapter {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .editorial-copy h2,
  .editorial-copy p,
  .reverse-copy h2,
  .reverse-copy p,
  .seasons-intro h2,
  .seasons-intro p,
  .next-chapter-link {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .story-chapter {
    width: min(100% - 36px, 1200px);
    padding: 100px 0;
  }

  .reverse-editorial {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .reverse-copy {
    padding-left: 0;
  }

  .reverse-copy h2 {
    font-size: 32px;
  }

  .seasons-intro h2 {
    font-size: 34px;
  }

  .season-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

  .season-item img {
    aspect-ratio: 4 / 5;
  }

  .authority {
    width: min(100% - 36px, 1200px);
    padding: 100px 0 120px;
  }

  .authority-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    margin-bottom: 54px;
  }

  .authority-heading h2 {
    font-size: 34px;
  }

  .authority-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .authority-item h3 {
    margin-top: 24px;
  }

  .authority-note {
    text-align: left;
  }

  .cinema-hero-copy { width:min(100% - 36px,1200px); }
  .cinema-hero-copy h1 { font-size:58px; }
  .cinema-hero-copy span { font-size:17px; }
  .craft-days { width:min(100% - 36px,1200px); padding:100px 0; }
  .craft-steps { margin-top:60px; grid-template-columns:minmax(0,1fr); gap:46px; }
  .craft-film { grid-template-columns:minmax(0,1fr); }
  .craft-film-copy { padding:85px 24px; }
  .craft-film-frame { min-height:60vh; }

  .industry-hero,.contact-intro { min-height:40vh; padding:80px 24px; }
  .industry-hero h1,.contact-intro h1 { font-size:52px; }
  .industry-muscle { width:min(100% - 36px,1200px); padding:100px 0; }
  .industry-grid { grid-template-columns:repeat(2,minmax(0,1fr)); grid-template-rows:repeat(2,190px) 340px; gap:12px; }
  .industry-image { grid-column:1 / 3; grid-row:3; }
  .industry-stat strong { font-size:54px; }
  .industry-stat { padding:24px; }
  .industry-footprint { padding:100px 24px; grid-template-columns:minmax(0,1fr); gap:34px; }
  .industry-footprint a { grid-column:1; }

  .contact-layout { width:min(100% - 36px,1200px); padding:90px 0 110px; grid-template-columns:minmax(0,1fr); gap:70px; }
  .contact-business { position:static; padding-top:0; }
  .contact-form { padding:28px 20px; }
  .form-priority { align-items:flex-start; flex-direction:column; }

  .next-chapter {
    padding: 120px 24px 130px;
  }

  .next-chapter-label {
    font-size: 20px;
    letter-spacing: 0.12em;
  }

  .next-chapter-link {
    font-size: 27px;
    line-height: 1.6;
  }
}
