:root {
  color-scheme: light;
  --sand: #e8dcc7;
  --oat: #d4b895;
  --sage: #8b9d83;
  --moss: #606c38;
  --clay: #b08b6e;
  --terracotta: #c66b3d;
  --ochre: #c08e3a;
  --ink: #3e4534;
  --moss-deep: #47512d;
  --line: rgba(96, 108, 56, 0.3);
  --display-font: "STKaiti", "KaiTi", "FangSong", serif;
  --body-font: "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.75;
}

body::before {
  content: "";
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='.82'/%3E%3C/svg%3E");
}

::selection { background: var(--terracotta); color: var(--sand); }

a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

a:hover { color: var(--terracotta); }
a:focus-visible { outline: 3px solid var(--ochre); outline-offset: 5px; }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(232, 220, 199, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 48px));
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--moss-deep);
  text-decoration: none;
}

.brand:hover { color: var(--moss-deep); }

.brand-seal {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--terracotta);
  border-radius: 17px 7px 17px 7px;
  color: var(--terracotta);
  font-family: var(--display-font);
  font-size: 25px;
  line-height: 1;
  transform: rotate(-2deg);
}

.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-family: var(--display-font); font-size: 24px; letter-spacing: 0.12em; }
.brand-copy small { margin-top: 4px; color: var(--moss); font-size: 10px; letter-spacing: 0.3em; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  position: relative;
  padding: 30px 0 27px;
  color: var(--moss-deep);
  font-size: 14px;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 360ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.hero {
  min-height: 670px;
  padding: 72px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  grid-template-rows: 1fr auto;
  column-gap: 68px;
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; padding: 36px 0 54px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero h1 {
  margin: 0;
  display: flex;
  align-items: baseline;
  color: var(--moss-deep);
  font-family: var(--display-font);
  font-size: clamp(92px, 12vw, 166px);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 0.82;
}

.hero h1 span:last-child { margin-left: 0.06em; color: var(--terracotta); font-size: 0.64em; }
.hero-lead { margin: 44px 0 0; color: var(--moss-deep); font-family: var(--display-font); font-size: clamp(24px, 2.8vw, 38px); letter-spacing: 0.05em; }
.hero-description { max-width: 590px; margin: 18px 0 0; color: var(--moss); font-size: 17px; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; }

.primary-link {
  min-height: 48px;
  padding: 11px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--moss);
  border-radius: 20px 8px 20px 8px;
  background: var(--moss);
  color: var(--sand);
  font-weight: 700;
  text-decoration: none;
  transition: background 320ms ease, border-color 320ms ease, transform 320ms ease;
}

.primary-link:hover { border-color: var(--terracotta); background: var(--terracotta); color: var(--sand); transform: translateY(-2px); }
.text-link { color: var(--moss-deep); font-size: 14px; }

.hero-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 120px 28px 120px 28px;
  background: var(--oat);
}

.sun-disc {
  position: absolute;
  top: 54px;
  right: 48px;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: var(--ochre);
  opacity: 0.72;
  animation: breathe 5s ease-in-out infinite;
}

.botanical { position: absolute; inset: 80px 40px 20px 70px; transform: rotate(-8deg); }
.stem {
  position: absolute;
  bottom: 8px;
  left: 52%;
  width: 3px;
  height: 340px;
  border-radius: 50%;
  background: var(--moss);
  transform: rotate(27deg);
  transform-origin: bottom;
}

.leaf {
  position: absolute;
  width: 102px;
  height: 46px;
  border: 2px solid var(--moss);
  border-radius: 100% 0 100% 0;
  background: rgba(139, 157, 131, 0.3);
}

.leaf-one { top: 78px; left: 171px; transform: rotate(14deg); }
.leaf-two { top: 146px; left: 88px; transform: rotate(202deg); }
.leaf-three { top: 208px; left: 196px; transform: rotate(14deg); }
.leaf-four { top: 273px; left: 123px; transform: rotate(202deg); }
.leaf-five { top: 327px; left: 224px; transform: rotate(18deg) scale(0.82); }

.visual-caption {
  position: absolute;
  right: 34px;
  bottom: 28px;
  margin: 0;
  color: var(--moss-deep);
  font-family: var(--display-font);
  font-size: 17px;
  line-height: 1.55;
  text-align: right;
}

.hero-facts {
  grid-column: 1 / -1;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts div { padding: 20px 24px; }
.hero-facts div + div { border-left: 1px solid var(--line); }
.hero-facts dt, .company-facts dt, .record-panel dt { color: var(--moss); font-size: 12px; }
.hero-facts dd, .company-facts dd, .record-panel dd { margin: 5px 0 0; color: var(--moss-deep); font-weight: 700; }

.section {
  padding: 116px 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
  border-top: 1px solid var(--line);
}

.section-intro h2, .compliance h2, .policy-header h1 {
  margin: 0;
  color: var(--moss-deep);
  font-family: var(--display-font);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.large-copy { margin: 0; color: var(--moss-deep); font-family: var(--display-font); font-size: clamp(23px, 2.4vw, 32px); line-height: 1.65; }
.company-facts { margin: 46px 0 0; display: grid; }
.company-facts div { padding: 18px 0; display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 20px; border-top: 1px solid var(--line); }
.company-facts div:last-child { border-bottom: 1px solid var(--line); }
.company-facts dd { margin-top: 0; }

.services { align-items: start; }
.services-heading { position: sticky; top: 40px; }
.services-heading > p:last-child { max-width: 350px; margin: 26px 0 0; color: var(--moss); font-size: 14px; }
.service-list { display: grid; gap: 18px; }
.service-list article {
  min-height: 190px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border: 1px solid rgba(96, 108, 56, 0.38);
  border-radius: 28px 10px 28px 10px;
  background: rgba(212, 184, 149, 0.34);
  transition: border-color 360ms ease, transform 360ms ease, background 360ms ease;
}

.service-list article:nth-child(2) { margin-left: 42px; }
.service-list article:hover { border-color: var(--terracotta); background: rgba(212, 184, 149, 0.56); transform: translateX(6px); }
.service-number { color: var(--terracotta); font-family: var(--display-font); font-size: 28px; }
.service-list h3 { margin: 0; color: var(--moss-deep); font-family: var(--display-font); font-size: 29px; font-weight: 400; }
.service-list p { margin: 14px 0 0; color: var(--moss); }

.process-list { margin: 0; padding: 0; display: grid; list-style: none; }
.process-list li { min-height: 112px; padding: 20px 0; display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 24px; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--terracotta); font-family: var(--display-font); font-size: 20px; }
.process-list strong { color: var(--moss-deep); font-family: var(--display-font); font-size: 25px; font-weight: 400; }
.process-list p { margin: 6px 0 0; color: var(--moss); }

.compliance {
  margin-block: 20px 110px;
  padding: 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 76px;
  border-radius: 32px 12px 32px 12px;
  background: var(--moss);
  color: var(--sand);
}

.compliance .eyebrow { color: var(--oat); }
.compliance h2 { color: var(--sand); }
.compliance-copy > p:last-child { margin: 24px 0 0; color: var(--oat); }
.boundary-list { margin: 0; padding: 0; list-style: none; }
.boundary-list li { padding: 19px 0 19px 34px; position: relative; border-top: 1px solid rgba(232, 220, 199, 0.34); }
.boundary-list li:last-child { border-bottom: 1px solid rgba(232, 220, 199, 0.34); }
.boundary-list li::before { content: ""; position: absolute; top: 29px; left: 4px; width: 11px; height: 6px; border-bottom: 2px solid var(--oat); border-left: 2px solid var(--oat); transform: rotate(-45deg); }

.record { padding-top: 0; border-top: 0; }
.record-panel { padding: 42px; border-radius: 28px 10px 28px 10px; background: var(--oat); }
.record-panel dl { margin: 0; }
.record-panel dl div { padding: 16px 0; display: grid; grid-template-columns: 130px minmax(0, 1fr); gap: 20px; border-top: 1px solid rgba(96, 108, 56, 0.34); }
.record-panel dl div:last-child { border-bottom: 1px solid rgba(96, 108, 56, 0.34); }
.record-panel dd { margin-top: 0; overflow-wrap: anywhere; }
.record-panel dd a { color: var(--moss-deep); }
.record-panel > p { margin: 24px 0 0; color: var(--moss); font-size: 13px; }

.site-footer { border-top: 1px solid var(--line); }
.footer-inner { padding: 42px 0 50px; display: grid; grid-template-columns: 1fr auto; gap: 20px 42px; align-items: start; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: var(--moss-deep); font-family: var(--display-font); font-size: 25px; letter-spacing: 0.08em; }
.footer-brand span, .footer-inner > p { color: var(--moss); font-size: 12px; }
.footer-links { display: flex; gap: 24px; font-size: 13px; }
.footer-inner > p { grid-column: 1 / -1; margin: 0; }

.policy-page { padding: 92px 0 120px; }
.policy-header { max-width: 880px; padding-bottom: 62px; border-bottom: 1px solid var(--line); }
.policy-header h1 { font-size: clamp(58px, 8vw, 104px); }
.policy-header > p:last-child { margin: 22px 0 0; color: var(--moss); }
.policy-layout { margin-top: 58px; display: grid; grid-template-columns: 220px minmax(0, 780px); gap: 92px; }
.policy-layout aside { align-self: start; position: sticky; top: 32px; }
.policy-layout aside > p { margin: 0 0 15px; color: var(--terracotta); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; }
.policy-layout aside ol { margin: 0; padding: 0; list-style: none; }
.policy-layout aside li + li { margin-top: 8px; }
.policy-layout aside a { color: var(--moss); font-size: 14px; text-decoration: none; }
.policy-layout aside a:hover { color: var(--terracotta); }
.policy-content section { padding: 28px 0 34px; display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 24px; border-top: 1px solid var(--line); scroll-margin-top: 32px; }
.policy-content section:last-of-type { border-bottom: 1px solid var(--line); }
.policy-content section > span { color: var(--terracotta); font-family: var(--display-font); font-size: 20px; }
.policy-content h2 { margin: 0; color: var(--moss-deep); font-family: var(--display-font); font-size: 28px; font-weight: 400; }
.policy-content p { margin: 12px 0 0; color: var(--moss); }
.back-link { margin-top: 36px; }

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.64; }
  50% { transform: scale(1.035); opacity: 0.78; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 960px) {
  .site-nav { gap: 18px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(310px, 0.8fr); column-gap: 36px; }
  .hero-visual { min-height: 430px; }
  .botanical { left: 32px; transform: rotate(-8deg) scale(0.88); }
  .section { gap: 44px; }
  .compliance { padding: 54px; gap: 42px; }
  .policy-layout { grid-template-columns: 170px minmax(0, 1fr); gap: 48px; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .shell { width: calc(100% - 32px); }
  .header-inner { width: calc(100% - 32px); min-height: 76px; gap: 18px; }
  .brand-seal { width: 40px; height: 40px; border-radius: 14px 6px 14px 6px; font-size: 22px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy small { display: none; }
  .site-nav { gap: 14px; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { padding: 24px 0 21px; font-size: 13px; }
  .home-page .site-nav a:nth-child(1),
  .home-page .site-nav a:nth-child(2),
  .home-page .site-nav a:nth-child(3) { display: none; }
  .policy-body .site-nav a:first-child { display: none; }
  .site-nav a::after { bottom: 15px; }
  .hero { min-height: 0; padding: 48px 0 28px; grid-template-columns: 1fr; grid-template-rows: auto; gap: 28px; }
  .hero-copy { padding: 0; }
  .hero h1 { font-size: clamp(82px, 28vw, 118px); }
  .hero-lead { margin-top: 30px; font-size: 26px; }
  .hero-description { max-width: 100%; overflow-wrap: anywhere; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-visual { min-height: 360px; border-radius: 80px 22px 80px 22px; }
  .sun-disc { top: 42px; right: 34px; width: 130px; height: 130px; }
  .botanical { inset: 36px 20px 6px 36px; transform: rotate(-8deg) scale(0.76); transform-origin: center bottom; }
  .visual-caption { right: 24px; bottom: 22px; font-size: 15px; }
  .hero-facts { grid-template-columns: 1fr; margin-top: 6px; }
  .hero-facts div { padding: 14px 0; display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 15px; }
  .hero-facts div + div { border-top: 1px solid var(--line); border-left: 0; }
  .hero-facts dd { margin: 0; overflow-wrap: anywhere; }
  .section { padding: 76px 0; grid-template-columns: 1fr; gap: 42px; }
  .section-intro h2, .compliance h2 { font-size: 40px; }
  .large-copy { font-size: 23px; }
  .company-facts { margin-top: 34px; }
  .company-facts div, .record-panel dl div { grid-template-columns: 1fr; gap: 5px; }
  .services-heading { position: static; }
  .service-list article { min-height: 0; padding: 26px 24px; grid-template-columns: 48px minmax(0, 1fr); border-radius: 24px 9px 24px 9px; }
  .service-list article:nth-child(2) { margin-left: 0; }
  .service-list article:hover { transform: none; }
  .service-number { font-size: 22px; }
  .service-list h3 { font-size: 25px; }
  .process-list li { grid-template-columns: 42px minmax(0, 1fr); gap: 17px; }
  .compliance { width: calc(100% - 24px); margin-block: 0 76px; padding: 42px 28px; grid-template-columns: 1fr; gap: 40px; border-radius: 28px 10px 28px 10px; }
  .boundary-list li { padding-left: 30px; }
  .record { padding-top: 0; }
  .record-panel { padding: 28px 22px; }
  .footer-inner { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 8px; }
  .policy-page { padding: 62px 0 84px; }
  .policy-header { padding-bottom: 42px; }
  .policy-layout { margin-top: 34px; grid-template-columns: 1fr; gap: 38px; }
  .policy-layout aside { position: static; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
  .policy-layout aside ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 20px; }
  .policy-layout aside li + li { margin-top: 0; }
  .policy-content section { grid-template-columns: 42px minmax(0, 1fr); gap: 16px; }
}

@media print {
  body::before, .hero-visual { display: none; }
  .site-nav { display: none; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .section, .compliance { page-break-inside: avoid; }
  a { text-decoration: none; }
}
