@charset "UTF-8";
:root {
  color-scheme: light;
  --ink: #242b28;
  --muted: #626b65;
  --green: #32614d;
  --paper: #f6f7f5;
  --line: #dce1db;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 3px solid #a65a35;
  outline-offset: 6px;
}
img {
  max-width: 100%;
  display: block;
}
p {
  line-height: 1.7;
  margin: 0;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
}
h2 {
  font-size: 40px;
  line-height: 1.2;
}
h3 {
  font-size: 28px;
  line-height: 1.3;
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 96px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--green);
}
.header {
  background: var(--paper);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-size: 29px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand-mark {
  background: var(--green);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-right: 10px;
  padding-bottom: 3px;
}
.brand-dot {
  color: var(--green);
}
nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 48px;
  font-size: 13px;
}
nav a {
  padding-block: 14px;
}
nav a:hover,
.text-link:hover,
.footer-bottom a:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.languages {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  white-space: nowrap;
}
.languages a {
  padding: 12px 2px;
  color: #798079;
}
.languages a[aria-current] {
  color: var(--ink);
  font-weight: 700;
}
.languages > span {
  color: #b2b9b2;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #e5e5e3;
  min-height: 580px;
  height: min(640px, 75svh);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.hero-inner {
  height: 100%;
  min-height: 580px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: 52%;
  padding-block: 32px;
}
.hero h1 {
  font-size: 100px;
  line-height: 1.08;
  margin: 20px 0;
}
.hero h1 span {
  color: var(--green);
}
.hero-line {
  font-size: 30px;
  line-height: 1.35;
}
.hero-description {
  max-width: 420px;
  font-size: 15px;
  color: #565f59;
  margin: 20px 0 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--green);
  color: white;
  padding: 16px 22px;
  border-radius: 3px;
  font-size: 13px;
  min-height: 50px;
  transition: background 0.2s;
}
.button:hover {
  background: #244b39;
}
.button span {
  font-size: 20px;
}
.image-credit {
  position: absolute;
  right: 0;
  bottom: 22px;
  font-size: 10px;
  color: #48534c;
  background: #ffffffd9;
  padding: 5px 10px;
  border-radius: 2px;
}
.intro-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.intro-strip .wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.small-marker {
  height: 7px;
  width: 7px;
  background: var(--green);
  transform: rotate(45deg);
}
.strip-brand {
  margin-left: auto;
  color: #626b65;
  font-size: 12px;
}
.strip-brand span {
  margin: 0 18px;
  color: #a8afa8;
}
.section-heading .eyebrow {
  margin-bottom: 20px;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 15px;
  margin-top: 18px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 44px;
}
.product-media {
  position: relative;
  display: block;
  height: 410px;
  overflow: hidden;
  border-radius: 5px;
  background: #e9e7ed;
}
.product-media > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.soul .product-media {
  background: #e7e5ef;
}
.dream .product-media {
  background: #e5ede7;
}
.product-media:hover > img {
  transform: scale(1.025);
}
.media-label {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffffff0;
  padding: 7px 13px 7px 7px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
}
.media-label img {
  border-radius: 7px;
  object-fit: contain;
}
.media-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 23px;
}
.product-copy {
  padding: 28px 0 0;
}
.product-copy h3 {
  margin: 10px 0 14px;
}
.product-copy > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  min-height: 77px;
}
.tags {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  font-size: 12px;
  color: var(--muted);
}
.tags li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tags li:before {
  content: "";
  height: 4px;
  width: 4px;
  background: var(--green);
  border-radius: 50%;
}
.text-link {
  font-size: 14px;
  display: inline-flex;
  gap: 25px;
  align-items: center;
  font-weight: 600;
}
.text-link span {
  font-size: 21px;
}
.about {
  background: #eaf0eb;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.about h2 {
  margin-top: 22px;
}
.about-copy {
  font-size: 17px;
  color: #4e5f53;
  padding-top: 34px;
}
.about-copy p + p {
  margin-top: 20px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #cad8cc;
}
.value-number {
  font-size: 12px;
  color: var(--green);
}
.values h3 {
  font-size: 18px;
  margin: 20px 0 12px;
}
.values p {
  font-size: 14px;
  color: #5b6a60;
  max-width: 320px;
}
.contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact h2 {
  font-size: 32px;
  margin: 16px 0;
}
.contact p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
}
.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  font-size: 20px;
}
.contact-link span {
  color: var(--green);
}
.contact-link:hover {
  color: var(--green);
  border-color: var(--green);
}
footer {
  background: #242d28;
  color: #f3f5f2;
  padding: 44px 0 24px;
}
footer .brand-dot {
  color: #b5d2a5;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid #465149;
}
.footer-top p {
  font-size: 13px;
  color: #c0c9c2;
}
.back-top {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid #68776c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
}
.back-top:hover {
  background: #3c4a40;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #c0c9c2;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
}
.skip {
  position: absolute;
  left: 16px;
  top: -100px;
  padding: 12px;
  background: white;
  z-index: 5;
}
.skip:focus {
  top: 10px;
}
.not-found {
  padding-block: 100px;
}
.not-found h1 {
  font-size: 48px;
  margin-block: 20px;
}
.not-found .eyebrow {
  margin-top: 70px;
}
.not-found .button {
  margin-top: 30px;
}
@media (min-width: 1700px) {
  .hero-image {
    object-fit: contain;
    object-position: right;
  }
  .hero {
    background: #e5e5e3;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 64px);
  }
  nav {
    margin-right: 15px;
    gap: 20px;
  }
  .hero h1 {
    font-size: 78px;
  }
  .hero-line {
    font-size: 26px;
  }
  .hero-description {
    max-width: 340px;
  }
  .hero {
    height: 580px;
  }
  .hero-image {
    object-position: 58% center;
  }
  .product-media {
    height: 350px;
  }
  .about-grid {
    gap: 40px;
  }
  .contact {
    gap: 40px;
  }
  .values {
    gap: 28px;
  }
}
@media (max-width: 650px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 76px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .wordmark {
    font-size: 25px;
  }
  .brand-mark {
    width: 25px;
    height: 25px;
    font-size: 22px;
    margin-right: 7px;
  }
  nav {
    display: none;
  }
  .languages {
    margin-left: auto;
  }
  .hero {
    height: 650px;
    min-height: 0;
  }
  .hero-inner {
    min-height: 0;
    align-items: flex-start;
  }
  .hero-copy {
    width: 100%;
    padding-top: 35px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero h1 {
    font-size: 64px;
    margin: 14px 0;
  }
  .hero-line {
    font-size: 24px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 340px;
    margin: 14px 0 20px;
  }
  .hero-image {
    height: 320px;
    width: auto;
    max-width: none;
    inset: auto 0 0 auto;
    object-fit: contain;
  }
  .hero .button {
    padding: 13px 18px;
    min-height: 46px;
  }
  .image-credit {
    bottom: 14px;
    right: 0;
    font-size: 9px;
  }
  .intro-strip .wrap {
    min-height: 65px;
    font-size: 11px;
  }
  .strip-brand {
    display: none;
  }
  .section {
    padding-block: 60px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 25px;
  }
  .section-heading .eyebrow {
    margin-bottom: 14px;
  }
  .section-heading > p:last-child {
    font-size: 14px;
    margin-top: 14px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 30px;
  }
  .product-media {
    height: 390px;
  }
  .product-copy {
    padding-top: 23px;
  }
  .product-copy > p:not(.eyebrow) {
    min-height: 0;
    font-size: 14px;
  }
  .tags {
    margin: 18px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-copy {
    padding-top: 0;
    font-size: 16px;
  }
  .values {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
    padding-top: 28px;
  }
  .values > div {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0 15px;
  }
  .value-number {
    padding-top: 4px;
  }
  .values h3 {
    margin: 0 0 9px;
    font-size: 17px;
  }
  .values p {
    grid-column: 2;
    max-width: none;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact h2 {
    font-size: 28px;
  }
  .contact-link {
    font-size: 18px;
    padding-block: 18px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-top p {
    order: 3;
    width: 100%;
    font-size: 12px;
  }
  .footer-bottom {
    gap: 20px;
    flex-wrap: wrap;
    font-size: 10px;
  }
  .footer-bottom > div {
    gap: 22px;
  }
  .back-top {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 360px) {
  .hero {
    height: 680px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-image {
    height: 295px;
  }
  .product-media {
    height: 330px;
  }
  .media-label {
    left: 12px;
    top: 12px;
    font-size: 14px;
  }
  .contact h2 {
    font-size: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
