:root {
  --ink: #18322b;
  --forest: #285147;
  --moss: #667c5c;
  --paper: #f5f3eb;
  --mist: #e5ebe0;
  --line: rgba(24, 50, 43, 0.18);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: inherit;
}

.site-header {
  width: min(1200px, calc(100% - 64px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

nav a,
.back-link {
  text-decoration: none;
  transition: opacity 160ms ease;
}

nav a:hover,
.back-link:hover {
  opacity: 0.58;
}

.hero {
  position: relative;
  width: min(1200px, calc(100% - 64px));
  min-height: 615px;
  margin: 0 auto;
  padding: 100px 9% 90px;
  overflow: hidden;
  color: #f8f7f0;
  background: var(--forest);
  border-radius: 4px;
}

.eyebrow {
  margin: 0 0 20px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1,
.section h2,
.contact h2,
.privacy-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 560px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.24;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 30px 0 36px;
  color: rgba(248, 247, 240, 0.85);
  font-size: 17px;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding: 13px 18px 13px 21px;
  border: 1px solid rgba(248, 247, 240, 0.72);
  color: inherit;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.button:hover {
  color: var(--forest);
  background: var(--paper);
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sun {
  position: absolute;
  top: 82px;
  right: 11%;
  width: 157px;
  height: 157px;
  border-radius: 50%;
  background: #e6c27e;
  opacity: 0.95;
}

.mountain {
  position: absolute;
  right: -4%;
  bottom: -44px;
  width: 65%;
  height: 68%;
  transform: skewX(-15deg) rotate(39deg);
  transform-origin: bottom right;
}

.mountain-back {
  background: #99ab7d;
  opacity: 0.65;
}

.mountain-front {
  right: -20%;
  bottom: -103px;
  background: #183b34;
}

.bird {
  position: absolute;
  width: 15px;
  height: 8px;
  border-top: 2px solid #f3e6bd;
  border-radius: 50% 50% 0 0;
  transform: rotate(10deg);
}

.bird::after {
  position: absolute;
  top: -2px;
  left: 12px;
  width: 15px;
  height: 8px;
  border-top: 2px solid #f3e6bd;
  border-radius: 50% 50% 0 0;
  content: "";
  transform: rotate(-20deg);
}

.bird-one {
  top: 142px;
  right: 31%;
}

.bird-two {
  top: 185px;
  right: 22%;
  transform: scale(0.7) rotate(8deg);
}

.statement {
  width: min(930px, calc(100% - 64px));
  padding: 100px 0 110px;
  margin: 0 auto;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(24px, 3.3vw, 40px);
  line-height: 1.62;
  text-align: center;
}

.statement p {
  margin: 0;
}

.statement p + p {
  margin-top: 10px;
}

.section {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 2fr);
  gap: 40px;
  width: min(1200px, calc(100% - 64px));
  padding: 72px 0;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.section-label {
  color: var(--moss);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.section-content {
  max-width: 810px;
}

.section h2 {
  max-width: 680px;
  font-size: clamp(31px, 4vw, 51px);
  line-height: 1.35;
}

.section-content > p {
  max-width: 720px;
  margin: 23px 0 0;
  color: rgba(24, 50, 43, 0.77);
  font-size: 17px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
}

.focus-grid article {
  min-height: 255px;
  padding: 29px 27px;
  background: var(--paper);
}

.focus-grid span {
  color: var(--moss);
  font-size: 12px;
  font-weight: 700;
}

.focus-grid h3 {
  margin: 52px 0 10px;
  font-family: var(--serif);
  font-size: 22px;
}

.focus-grid p {
  margin: 0;
  color: rgba(24, 50, 43, 0.7);
  font-size: 14px;
  line-height: 1.75;
}

.values ul {
  padding: 0;
  margin: 44px 0 0;
  list-style: none;
}

.values li {
  display: grid;
  grid-template-columns: minmax(130px, 0.75fr) 2fr;
  gap: 26px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(24, 50, 43, 0.78);
}

.values li span:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
}

.contact {
  width: min(1200px, calc(100% - 64px));
  padding: 104px 9%;
  margin: 72px auto 0;
  color: #f8f7f0;
  background: #1d3e36;
  border-radius: 4px;
}

.contact h2 {
  font-size: clamp(38px, 5vw, 62px);
}

.contact > p:not(.eyebrow):not(.company-name) {
  margin: 18px 0 28px;
  color: rgba(248, 247, 240, 0.75);
}

.contact-email {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 36px);
  text-decoration: none;
}

.company-name {
  margin: 58px 0 0;
  color: rgba(248, 247, 240, 0.68);
  font-size: 13px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1200px, calc(100% - 64px));
  padding: 32px 0 42px;
  margin: 0 auto;
  color: rgba(24, 50, 43, 0.66);
  font-size: 12px;
}

footer a {
  text-decoration: none;
}

.privacy-page {
  min-height: 100vh;
}

.privacy-content {
  width: min(760px, calc(100% - 64px));
  padding: 82px 0 110px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.updated {
  margin: 13px 0 62px;
  color: var(--moss);
  font-size: 14px;
}

.privacy-content section {
  padding: 29px 0;
  border-top: 1px solid var(--line);
}

.privacy-content h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 24px;
}

.privacy-content p {
  margin: 0;
  color: rgba(24, 50, 43, 0.8);
}

.privacy-content p + p {
  margin-top: 14px;
}

.privacy-content a {
  color: var(--forest);
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .section,
  .statement,
  .contact,
  footer,
  .privacy-content {
    width: min(100% - 36px, 1200px);
  }

  .site-header {
    min-height: 78px;
  }

  nav {
    gap: 15px;
    font-size: 13px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    font-size: 11px;
  }

  .hero {
    min-height: 600px;
    padding: 76px 30px 55px;
  }

  .hero-copy {
    max-width: 360px;
    font-size: 15px;
  }

  .sun {
    top: auto;
    right: 20px;
    bottom: 116px;
    width: 100px;
    height: 100px;
    opacity: 0.78;
  }

  .mountain {
    width: 105%;
    height: 48%;
  }

  .bird-one {
    top: auto;
    right: 39%;
    bottom: 203px;
  }

  .bird-two {
    top: auto;
    right: 26%;
    bottom: 183px;
  }

  .statement {
    padding: 72px 0 78px;
    font-size: 25px;
    text-align: left;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 21px;
    padding: 54px 0;
  }

  .section h2 {
    font-size: 31px;
  }

  .section-content > p {
    font-size: 15px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    margin-top: 31px;
  }

  .focus-grid article {
    min-height: 190px;
  }

  .focus-grid h3 {
    margin-top: 31px;
  }

  .values li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact {
    padding: 70px 30px;
    margin-top: 38px;
  }

  footer {
    flex-direction: column;
    padding: 25px 0 32px;
  }

  .privacy-content {
    padding: 54px 0 76px;
  }
}
