:root {
  color-scheme: light;
  --ink: #13211d;
  --forest: #173f34;
  --forest-deep: #0d2b24;
  --pear: #c7dc6c;
  --yellow: #f1c84c;
  --paper: #f7f8f2;
  --white: #ffffff;
  --muted: #5c6863;
  --line: #cfd6d1;
  --accent: #b75439;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 clamp(24px, 5vw, 80px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest-deep);
  background: var(--pear);
  border-radius: 50%;
  font-family: "STSong", "SimSun", serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-family: "STSong", "SimSun", serif;
  font-size: 20px;
}

.brand-copy small {
  font-size: 9px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.site-nav a {
  font-size: 14px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pear);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(840px, 92vh);
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
  isolation: isolate;
}

.hero-inner {
  z-index: 2;
  align-self: center;
  width: min(680px, 58vw);
  margin: 96px 0 64px clamp(24px, 9vw, 150px);
}

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

.hero .eyebrow {
  color: var(--pear);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "STSong", "SimSun", serif;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.95;
  font-weight: 700;
}

.hero-lead {
  margin: 30px 0 0;
  color: var(--yellow);
  font-family: "STSong", "SimSun", serif;
  font-size: clamp(24px, 2.4vw, 38px);
}

.hero-description {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.9;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding: 14px 0;
  color: var(--white);
  border-bottom: 1px solid var(--pear);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero-link span {
  color: var(--pear);
  font-size: 20px;
}

.hero-art {
  position: absolute;
  z-index: 1;
  right: clamp(-110px, -3vw, -20px);
  bottom: -90px;
  width: min(630px, 50vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pear);
}

.hero-art::before {
  position: absolute;
  inset: 5%;
  content: "";
  border: 1px solid rgba(23, 63, 52, 0.24);
  border-radius: 50%;
}

.hero-art img {
  position: absolute;
  right: 9%;
  bottom: 7%;
  width: 82%;
  height: 82%;
  object-fit: contain;
  transform: rotate(7deg);
  filter: drop-shadow(0 28px 20px rgba(13, 43, 36, 0.25));
}

.hero-art > p {
  position: absolute;
  right: 30%;
  bottom: 8%;
  margin: 0;
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 700;
}

.harvest-note {
  position: absolute;
  z-index: 2;
  top: 19%;
  left: 0;
  display: flex;
  flex-direction: column;
  color: var(--forest-deep);
}

.harvest-note span {
  font-family: "STSong", "SimSun", serif;
  font-size: 18px;
  font-weight: 700;
}

.harvest-note strong {
  margin-top: 4px;
  font-size: 11px;
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5vw, 80px);
  top: 110px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
}

.hero-index i {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.44);
}

.section-band {
  padding: 110px clamp(24px, 9vw, 150px);
}

.section-heading h2,
.service h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.2;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(60px, 10vw, 180px);
  align-items: end;
  background: var(--white);
}

.about-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.about-signature {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.about-signature span {
  color: var(--forest);
  font-family: "STSong", "SimSun", serif;
  font-size: 24px;
  font-weight: 700;
}

.about-signature small {
  color: var(--muted);
}

.showcase {
  background: #e9ede6;
}

.showcase-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  align-items: end;
  margin-bottom: 62px;
}

.showcase-heading .eyebrow {
  grid-column: 1 / -1;
}

.showcase-heading > p:last-child {
  justify-self: end;
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.showcase-item {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(19, 33, 29, 0.1);
  border-radius: 4px;
}

.showcase-featured {
  color: var(--white);
  background: var(--forest);
}

.item-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.showcase-featured .item-number {
  color: var(--pear);
}

.item-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}

.showcase-featured .item-kicker {
  color: var(--yellow);
}

.showcase-item h3 {
  margin: 0;
  font-family: "STSong", "SimSun", serif;
  font-size: 32px;
}

.showcase-item div > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.showcase-featured div > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.service {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(60px, 10vw, 160px);
  background: var(--paper);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 42px 130px 1fr;
  gap: 20px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-row span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.service-row h3,
.service-row p {
  margin: 0;
}

.service-row h3 {
  font-family: "STSong", "SimSun", serif;
  font-size: 22px;
}

.service-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer {
  padding: 58px clamp(24px, 5vw, 80px) 28px;
  color: var(--white);
  background: var(--forest-deep);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-brand strong {
  font-family: "STSong", "SimSun", serif;
  font-size: 30px;
}

.footer-brand span {
  color: var(--pear);
  font-size: 10px;
  font-weight: 700;
}

.footer-summary {
  margin: 36px 0 58px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.footer-meta a {
  color: var(--white);
  text-decoration: none;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--pear);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .site-nav {
    gap: 20px;
  }

  .hero-inner {
    width: min(620px, 72vw);
    margin-left: 7vw;
  }

  .hero-art {
    right: -150px;
    width: 560px;
    opacity: 0.8;
  }

  .about,
  .service {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .showcase-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
    padding: 0 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-inner {
    align-self: start;
    width: auto;
    margin: 124px 24px 80px;
  }

  h1 {
    font-size: 64px;
  }

  .hero-description {
    max-width: 460px;
    font-size: 15px;
  }

  .hero-art {
    right: -108px;
    bottom: -72px;
    width: 330px;
    opacity: 0.78;
  }

  .hero-art > p {
    right: 25%;
  }

  .harvest-note {
    left: 7%;
  }

  .hero-index {
    display: none;
  }

  .section-band {
    padding: 78px 24px;
  }

  .section-heading h2,
  .service h2 {
    font-size: 40px;
  }

  .about {
    gap: 42px;
  }

  .about-copy > p {
    font-size: 16px;
  }

  .about-signature {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 42px;
  }

  .showcase-heading .eyebrow {
    grid-column: auto;
  }

  .showcase-heading > p:last-child {
    justify-self: start;
  }

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

  .showcase-featured {
    grid-column: auto;
  }

  .showcase-item {
    min-height: 240px;
  }

  .service {
    gap: 44px;
  }

  .service-row {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .service-row p {
    grid-column: 2;
  }

  .footer-summary {
    margin-bottom: 42px;
  }

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

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