:root {
  --paper: #f8faf8;
  --white: #ffffff;
  --ink: #26312e;
  --muted: #5f6c68;
  --sage: #6f8885;
  --sage-dark: #465f5b;
  --mist: #e7eeea;
  --line: #dce4df;
  --shadow: 0 7px 18px rgba(32, 49, 45, .09);
  --sans: "Avenir Next", Avenir, "Century Gothic", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
a, button { touch-action: manipulation; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--sage-dark); outline-offset: 4px; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, figure { margin-top: 0; }
h1, h2, h3 { font-family: var(--sans); font-weight: 400; }

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

.header {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 28px;
  background: var(--paper);
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .13em;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .15em;
}

.header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.header nav a,
.languages a,
.collection-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.header nav a,
.collection-nav a,
.text-link {
  transition: color .2s ease;
}

.header nav a:hover,
.collection-nav a:hover,
.text-link:hover { color: var(--sage-dark); }

.languages {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
}

.languages a {
  min-width: 38px;
  justify-content: center;
}

.languages [aria-current] {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.languages span { color: #a5afab; font-size: 11px; }

.hero {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  min-height: clamp(500px, 60vw, 690px);
  display: grid;
  overflow: hidden;
  background: var(--white);
}

.hero-copy,
.hero-image { grid-area: 1 / 1; }

.hero-image {
  position: relative;
  z-index: 0;
  margin: 0;
  min-width: 0;
}

.hero-image > img {
  width: 100%;
  height: 100%;
  min-height: clamp(500px, 60vw, 690px);
  object-fit: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 44%, rgba(248, 250, 248, .96) 0, rgba(248, 250, 248, .82) 24%, rgba(248, 250, 248, .18) 54%, transparent 70%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  place-self: center;
  width: min(820px, calc(100% - 56px));
  padding: 64px 24px 76px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .19em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: .045em;
  text-transform: uppercase;
}

h1 em {
  display: inline-block;
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 400;
}

html[lang="ru"] h1 {
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: .02em;
}

.intro {
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .025em;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 20px;
  border: 1px solid var(--sage-dark);
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease;
}

.button:hover { background: var(--sage-dark); color: var(--white); }
.button span { font-size: 15px; }

figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .15em;
}

.about {
  padding-block: 100px 108px;
  text-align: center;
}

.about > .eyebrow { margin-bottom: 25px; }

.about-text {
  width: min(820px, 100%);
  margin-inline: auto;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.22;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.about-text p {
  width: min(650px, 100%);
  margin-inline: auto;
  color: var(--muted);
}

.about-text p + p { margin-top: 16px; }

.collection-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  border-block: 1px solid var(--line);
  background: rgba(248, 250, 248, .94);
  backdrop-filter: blur(10px);
}

.collection-nav nav {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.collection { padding-block: 90px 18px; }
.collection + .collection { padding-top: 110px; }

.section-head {
  margin-bottom: 40px;
  text-align: center;
}

.section-head .eyebrow { margin-bottom: 13px; }
.section-head h2 { margin-bottom: 0; }
.section-number { display: none; }

.tea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
}

.tea {
  min-width: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.tea:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(32, 49, 45, .12);
}

.tea-image {
  overflow: hidden;
  background: #fbfcfb;
}

.tea-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  transition: transform .35s ease;
}

.tea:hover .tea-image img { transform: scale(1.018); }

.tea-copy {
  min-height: 190px;
  padding: 24px 25px 28px;
  text-align: center;
}

.tea .eyebrow {
  display: block;
  margin-bottom: 11px;
  font-size: 8px;
}

.tea h3 {
  margin-bottom: 13px;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.tea p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.founder {
  width: min(1180px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-block: 118px;
  background: var(--white);
}

.founder-image {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 13%;
  overflow: hidden;
  background: var(--mist);
}

.founder-image img {
  width: min(330px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 11%;
}

.founder-copy h2 { margin-bottom: 0; }

.founder-copy h2 em {
  display: block;
  margin-top: 12px;
  color: var(--sage-dark);
  font-size: .42em;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: none;
}

.founder-copy > p:not(.eyebrow) {
  margin-block: 28px;
  color: var(--muted);
}

.text-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact {
  padding-block: 90px 76px;
  background: var(--mist);
  color: var(--ink);
  text-align: center;
}

.contact .eyebrow { color: var(--sage-dark); }

.contact-top {
  width: min(760px, 100%);
  margin: 0 auto 62px;
}

.contact h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 58px);
}

.contact-top p {
  margin-bottom: 27px;
  color: var(--muted);
}

.button.light { background: var(--white); color: var(--ink); }
.button.light:hover { background: var(--sage-dark); color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.2fr .7fr;
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(70, 95, 91, .25);
  text-align: left;
}

.contact-grid .eyebrow { margin-bottom: 12px; font-size: 8px; }

.contact-grid a,
.wechat-id {
  min-height: 44px;
  display: flex;
  align-items: center;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 12px;
}

.contact-grid a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

.copy {
  min-height: 44px;
  display: block;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--sage-dark);
  background: none;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .08em;
}

.copy-status { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; }

.footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
  letter-spacing: .05em;
}

.footer p { margin: 0; }
.footer span { font-size: 9px; }
.footer > a { min-height: 44px; display: inline-flex; align-items: center; white-space: nowrap; }

.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 10;
  padding: 13px 16px;
  background: var(--ink);
  color: var(--white);
}

.skip:focus { top: 15px; }

@media (max-width: 980px) {
  .wrap { width: min(100% - 48px, 900px); }
  .header { grid-template-columns: 1fr auto; gap: 12px 24px; padding-block: 12px; }
  .header nav { grid-column: 1 / -1; grid-row: 2; border-top: 1px solid var(--line); }
  .languages { grid-column: 2; grid-row: 1; }
  .tea-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder { width: min(100% - 48px, 900px); }
  .founder-copy { padding: 55px 9%; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 126px; }
  .wrap { width: calc(100% - 32px); }
  .header { min-height: 0; padding-block: 9px; }
  .brand { gap: 8px; font-size: 10px; }
  .brand img { width: 44px; height: 44px; }
  .brand small { font-size: 7px; }
  .header nav { justify-content: space-between; gap: 12px; }
  .header nav a { font-size: 9px; letter-spacing: .1em; }
  .languages a { min-width: 32px; font-size: 10px; }
  .hero { width: calc(100% - 24px); min-height: 560px; }
  .hero-image > img { min-height: 560px; }
  .hero-image::after { background: radial-gradient(circle at 50% 45%, rgba(248, 250, 248, .96) 0, rgba(248, 250, 248, .84) 31%, rgba(248, 250, 248, .25) 64%, transparent 80%); }
  .hero-copy { width: calc(100% - 24px); padding-inline: 0; }
  h1 { font-size: clamp(30px, 12vw, 58px); letter-spacing: .025em; }
  html[lang="ru"] h1 { font-size: clamp(30px, 9.1vw, 43px); letter-spacing: .01em; }
  .intro { font-size: 14px; }
  figcaption { right: 10px; left: 10px; font-size: 7px; }
  .about { padding-block: 74px 78px; }
  h2 { font-size: 31px; }
  .collection-nav { overflow-x: auto; }
  .collection-nav nav { width: max-content; min-width: 100%; justify-content: flex-start; gap: 27px; padding-inline: 18px; }
  .collection-nav a { font-size: 9px; white-space: nowrap; }
  .collection { padding-top: 72px; }
  .collection + .collection { padding-top: 92px; }
  .tea-grid { grid-template-columns: 1fr; gap: 24px; }
  .tea-copy { min-height: 0; }
  .founder { width: calc(100% - 32px); grid-template-columns: 1fr; margin-block: 82px; }
  .founder-image { min-height: 340px; }
  .founder-copy { padding: 48px 30px 52px; text-align: center; }
  .founder-copy .text-link { margin-inline: auto; }
  .contact { padding-block: 72px 62px; }
  .contact-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .contact-grid a, .wechat-id { min-height: 44px; justify-content: center; }
  .copy { margin-inline: auto; }
  .footer { flex-wrap: wrap; gap: 12px 24px; padding-block: 24px; }
  .footer p:first-child { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

