:root {
  --pine-950: #0c271f;
  --pine-900: #12352a;
  --pine-800: #173f32;
  --pine-700: #245443;
  --pine-500: #5f806d;
  --moss: #a9b89f;
  --paper: #f3edde;
  --paper-deep: #e8dfca;
  --ink: #18302a;
  --ink-soft: #59645e;
  --gold: #d6ae59;
  --gold-soft: #e7c982;
  --clay: #a45e3f;
  --white: #fffdf7;
  --line: rgba(23, 63, 50, 0.17);
  --serif: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", STSong, serif;
  --display: "Kaiti SC", "STKaiti", "KaiTi", var(--serif);
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --container: min(1160px, calc(100vw - 40px));
  --shadow: 0 28px 80px rgba(8, 31, 24, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* JavaScript aligns the fixed header precisely; this is the no-JS fallback. */
  scroll-padding-top: 68px;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
dl,
dd,
blockquote,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--pine-950);
  background: var(--gold-soft);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 96px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--pine-950);
  background: var(--gold-soft);
  border-radius: 2px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--gold-soft);
}

.eyebrow i {
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.eyebrow.dark {
  color: #68766e;
}

.eyebrow.dark span {
  color: var(--pine-700);
}

.section-heading h2,
.contact-copy h2 {
  margin-top: 19px;
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 68px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.section-heading h2 em,
.contact-copy h2 em {
  color: var(--pine-700);
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light h2 em {
  color: var(--gold-soft);
}

.section-mark {
  position: absolute;
  top: 55px;
  right: max(20px, calc((100vw - 1160px) / 2));
  color: rgba(23, 63, 50, 0.07);
  font-family: Georgia, serif;
  font-size: clamp(110px, 22vw, 260px);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 54px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--pine-950);
  background: var(--gold-soft);
}

.button-primary:hover {
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--pine-800);
}

.button-dark:hover {
  background: var(--pine-950);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 76px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 68px;
  background: rgba(12, 39, 31, 0.91);
  box-shadow: 0 9px 36px rgba(7, 24, 19, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.menu-active {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-seal {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(231, 201, 130, 0.7);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 21px;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-family: Georgia, serif;
  font-size: 7px;
  letter-spacing: 0.26em;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 11px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 1px;
  margin-block: 3px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  visibility: hidden;
  color: var(--white);
  background: var(--pine-950);
  opacity: 0;
  transform: translateY(-16px);
  transition: visibility 0.3s, opacity 0.3s ease, transform 0.3s ease;
}

.site-nav.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-nav a {
  position: relative;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.12em;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold-soft);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 19px;
  border: 1px solid rgba(231, 201, 130, 0.65);
  color: var(--gold-soft);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(127, 158, 131, 0.18), transparent 30%),
    linear-gradient(135deg, var(--pine-950), #153b2f 58%, #234838);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.045);
  content: "";
}

.hero-noise,
.hero-noise::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-noise {
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}

.hero-noise::before {
  content: "";
  background:
    linear-gradient(115deg, transparent 0 69%, rgba(255,255,255,.035) 69% 69.1%, transparent 69.1%),
    linear-gradient(65deg, transparent 0 83%, rgba(255,255,255,.03) 83% 83.1%, transparent 83.1%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  padding-top: 112px;
  padding-bottom: 84px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
}

.hero-copy h1 {
  max-width: 680px;
  margin-top: 23px;
  font-family: var(--serif);
  font-size: clamp(52px, 14vw, 98px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.07em;
}

.hero-copy h1 em {
  display: inline-block;
  color: var(--gold-soft);
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  transform: translateX(0.08em);
}

.hero-lead {
  max-width: 560px;
  margin-top: 27px;
  color: rgba(255, 253, 247, 0.7);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-block: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  letter-spacing: .08em;
  transition: color .2s ease;
}

.text-link:hover {
  color: var(--gold-soft);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  margin-top: 48px;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-facts div {
  padding-right: 10px;
}

.hero-facts div + div {
  padding-left: 13px;
  border-left: 1px solid rgba(255,255,255,.1);
}

.hero-facts dt {
  color: rgba(255,255,255,.42);
  font-size: 10px;
  letter-spacing: .12em;
}

.hero-facts dd {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .06em;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  margin-top: 48px;
}

.hero-image-wrap {
  position: absolute;
  inset: 28px 0 0 42px;
  overflow: hidden;
  border-radius: 48% 48% 2px 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,37,29,.02), rgba(13,37,29,.24));
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(.68) sepia(.12) contrast(1.04);
  transform: scale(1.02);
}

.hero-coordinate {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  color: rgba(255,255,255,.5);
  font-family: Georgia, serif;
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: .16em;
  transform: translateY(-50%) rotate(-90deg);
}

.glass-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.tasting-card {
  position: absolute;
  z-index: 3;
  right: -9px;
  bottom: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  width: min(310px, 84%);
  padding: 15px;
  border: 1px solid rgba(255,255,255,.19);
  background: rgba(19, 47, 38, 0.66);
  box-shadow: 0 18px 45px rgba(5, 22, 17, .25);
}

.tasting-index {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(231,201,130,.45);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 11px;
}

.tasting-card div {
  display: flex;
  flex-direction: column;
}

.tasting-card small {
  color: rgba(255,255,255,.45);
  font-size: 8px;
  letter-spacing: .16em;
}

.tasting-card strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
}

.tasting-ring {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(231,201,130,.48);
  border-radius: 50%;
}

.tasting-ring::after {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(231,201,130,.48);
  border-radius: inherit;
  content: "";
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  top: -3px;
  right: 17px;
  display: flex;
  width: 67px;
  height: 67px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  border: 1px solid rgba(231,201,130,.67);
  border-radius: 50%;
  background: var(--pine-900);
  line-height: 1.1;
  transform: rotate(7deg);
}

.hero-stamp span {
  font-size: 7px;
  letter-spacing: .15em;
}

.hero-stamp b {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
}

.scroll-cue {
  display: none;
}

/* Origin */
.origin {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 82%, rgba(93,125,105,.09), transparent 24%),
    var(--paper);
}

.origin-grid {
  display: grid;
  gap: 38px;
}

.origin-intro {
  color: var(--ink-soft);
}

.origin-intro p + p {
  margin-top: 19px;
}

.origin-intro .lead-drop::first-letter {
  float: left;
  margin: 6px 8px 0 0;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 55px;
  line-height: .72;
}

.origin-composition {
  position: relative;
  min-height: 445px;
  margin-top: 11px;
}

.mountain-art {
  position: absolute;
  inset: 0 0 82px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mountain-art svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-caption {
  position: absolute;
  top: 17px;
  right: 17px;
  display: flex;
  padding: 12px 14px;
  flex-direction: column;
  color: var(--white);
  border-left: 1px solid rgba(255,255,255,.38);
  background: rgba(17,54,42,.34);
  backdrop-filter: blur(8px);
}

.origin-caption span,
.origin-caption small {
  color: rgba(255,255,255,.64);
  font-size: 8px;
  letter-spacing: .14em;
}

.origin-caption strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.origin-note {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: min(310px, 88%);
  padding: 22px 24px;
  color: var(--white);
  background: var(--pine-800);
  box-shadow: 0 18px 38px rgba(17,47,37,.19);
}

.quote-mark {
  position: absolute;
  top: -17px;
  right: 16px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
}

.origin-note blockquote {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.45;
}

.origin-note p {
  margin-top: 10px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

.origin-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.origin-data li {
  display: flex;
  min-height: 118px;
  padding: 19px 15px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.origin-data strong {
  color: var(--pine-700);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.origin-data sup {
  font-size: 12px;
}

.origin-data span {
  margin-top: 5px;
  color: #7b857f;
  font-size: 10px;
  letter-spacing: .12em;
}

/* Tea collection */
.tea-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--pine-950);
  background-size: 48px 48px;
}

.tea-section::before {
  position: absolute;
  top: -140px;
  left: -130px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(214,174,89,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(214,174,89,.025), 0 0 0 160px rgba(214,174,89,.018);
  content: "";
}

.tea-heading {
  position: relative;
  display: grid;
  gap: 24px;
  margin-bottom: 47px;
}

.tea-heading > p {
  max-width: 390px;
  color: rgba(255,255,255,.55);
  font-family: var(--serif);
}

.tea-grid {
  position: relative;
  display: grid;
  gap: 17px;
}

.tea-card {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  padding: 22px;
  color: var(--ink);
  background: #e7e6d7;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease;
}

.tea-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.tea-card::before {
  position: absolute;
  z-index: -1;
  top: -80px;
  right: -80px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(24,48,42,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(24,48,42,.03), 0 0 0 78px rgba(24,48,42,.02);
  content: "";
}

.tea-card-roast {
  color: #fff9eb;
  background: #9d6142;
}

.tea-card-aged {
  color: #f4ebd6;
  background: #31463c;
}

.tea-card-top {
  display: flex;
  justify-content: space-between;
  color: currentColor;
  font-size: 9px;
  letter-spacing: .12em;
  opacity: .68;
}

.tea-tin {
  position: relative;
  width: 136px;
  height: 190px;
  margin: 36px auto 30px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 8px 8px 3px 3px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.15), transparent 14% 86%, rgba(0,0,0,.08)),
    #446957;
  box-shadow: 0 28px 40px rgba(21,42,33,.23);
}

.tea-card-light .tea-tin {
  background:
    linear-gradient(90deg, rgba(255,255,255,.25), transparent 14% 86%, rgba(0,0,0,.07)),
    #6f917c;
}

.tea-card-roast .tea-tin {
  background:
    linear-gradient(90deg, rgba(255,255,255,.15), transparent 14% 86%, rgba(0,0,0,.12)),
    #e0b269;
}

.tea-card-aged .tea-tin {
  background:
    linear-gradient(90deg, rgba(255,255,255,.13), transparent 14% 86%, rgba(0,0,0,.16)),
    #172e26;
}

.tea-tin::before,
.tea-tin::after {
  position: absolute;
  right: -4px;
  left: -4px;
  height: 10px;
  border: 1px solid rgba(255,255,255,.38);
  background: inherit;
  content: "";
}

.tea-tin::before {
  top: -6px;
  border-radius: 50% 50% 2px 2px;
}

.tea-tin::after {
  bottom: -4px;
  border-radius: 2px 2px 50% 50%;
}

.tin-seal {
  position: absolute;
  top: 45px;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #eee4cb;
  border: 1px solid rgba(238,228,203,.75);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 31px;
  transform: translateX(-50%);
}

.tea-tin i {
  position: absolute;
  bottom: 33px;
  left: 50%;
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,.5);
}

.tea-tin i::before,
.tea-tin i::after {
  position: absolute;
  bottom: 0;
  width: 9px;
  height: 17px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 100% 0 100% 0;
  content: "";
}

.tea-tin i::before {
  right: 0;
  transform: rotate(-26deg);
}

.tea-tin i::after {
  left: 0;
  transform: scaleX(-1) rotate(-26deg);
}

.tea-card-body {
  position: relative;
  padding-top: 21px;
  border-top: 1px solid currentColor;
}

.tea-card-body::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 54px;
  height: 5px;
  background: currentColor;
  content: "";
}

.tea-type {
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .18em;
  opacity: .6;
}

.tea-card h3 {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.tea-card-body > p:not(.tea-type) {
  min-height: 52px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
  opacity: .7;
}

.tea-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.tea-card dl div {
  display: flex;
  flex-direction: column;
}

.tea-card dt {
  font-size: 8px;
  letter-spacing: .12em;
  opacity: .45;
}

.tea-card dd {
  font-family: var(--serif);
  font-size: 12px;
}

.tea-select {
  display: flex;
  width: 100%;
  margin-top: 20px;
  padding: 12px 0 7px;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  border: 0;
  border-top: 1px solid currentColor;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
  opacity: .75;
  transition: opacity .2s ease, padding .2s ease;
}

.tea-select:hover {
  padding-inline: 5px;
  opacity: 1;
}

/* Craft */
.craft {
  overflow: hidden;
}

.craft-head {
  display: grid;
  gap: 28px;
}

.craft-head > p {
  color: var(--ink-soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list li {
  position: relative;
  min-height: 190px;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, background .25s ease;
}

.process-list li:hover {
  color: var(--white);
  background: var(--pine-700);
}

.process-list li > span {
  position: absolute;
  top: 12px;
  right: 14px;
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 10px;
}

.process-list li:hover > span {
  color: var(--gold-soft);
}

.process-icon {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 13px 0 14px;
}

.process-icon::before,
.process-icon::after {
  position: absolute;
  content: "";
}

.process-icon.sun::before {
  inset: 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 6px transparent, 0 -14px 0 -13px, 0 14px 0 -13px, 14px 0 0 -13px, -14px 0 0 -13px;
}

.process-icon.rays {
  background: repeating-conic-gradient(from 0deg, currentColor 0 1deg, transparent 1deg 30deg);
  border-radius: 50%;
  transform: scale(.72);
}

.process-icon.rays::before {
  inset: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--paper);
}

.process-list li:hover .rays::before {
  background: var(--pine-700);
}

.process-icon.wave::before {
  inset: 8px 2px;
  border: 1px solid currentColor;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(22deg);
  box-shadow: inset 0 8px 0 -7px, inset 0 -8px 0 -7px;
}

.process-icon.flame::before {
  inset: 4px 11px 6px;
  border: 1px solid currentColor;
  border-radius: 70% 30% 55% 45%;
  transform: rotate(45deg);
}

.process-icon.flame::after {
  right: 20px;
  bottom: 12px;
  width: 11px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 60% 30% 50% 40%;
  transform: rotate(35deg);
}

.process-icon.curl::before {
  inset: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px var(--paper), inset 0 0 0 7px currentColor;
}

.process-list li:hover .curl::before {
  box-shadow: inset 0 0 0 6px var(--pine-700), inset 0 0 0 7px currentColor;
}

.process-icon.fire::before,
.process-icon.fire::after {
  bottom: 6px;
  width: 22px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 70% 30% 55% 45%;
  transform: rotate(35deg);
}

.process-icon.fire::before {
  left: 6px;
}

.process-icon.fire::after {
  right: 5px;
  bottom: 9px;
  transform: rotate(55deg) scale(.8);
}

.process-list h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.process-list p {
  color: var(--ink-soft);
  font-size: 10px;
}

.process-list li:hover p {
  color: rgba(255,255,255,.64);
}

.craft-quote {
  position: relative;
  min-height: 400px;
  margin-top: 68px;
  overflow: hidden;
  color: var(--white);
  background: var(--pine-900);
}

.craft-quote::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,31,24,.86), rgba(8,31,24,.2));
  content: "";
}

.craft-quote img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.62) brightness(.8);
}

.craft-quote blockquote,
.craft-quote > p {
  position: relative;
  z-index: 2;
  margin-left: 8%;
}

.craft-quote blockquote {
  padding-top: 110px;
  font-family: var(--display);
  font-size: clamp(29px, 8vw, 50px);
  line-height: 1.42;
}

.craft-quote blockquote span {
  color: var(--gold-soft);
  font-family: Georgia, serif;
}

.craft-quote > p {
  margin-top: 20px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: .12em;
}

/* Brewing */
.brew {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 70%, rgba(210,176,100,.11), transparent 24%),
    #28493e;
}

.brew::before {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.02), 0 0 0 140px rgba(255,255,255,.012);
  content: "";
}

.brew-grid {
  display: grid;
  gap: 57px;
}

.brew-visual {
  position: relative;
  max-width: 440px;
  margin-inline: auto;
  padding: 19px 36px 0 0;
}

.brew-visual::before {
  position: absolute;
  top: -18px;
  right: 13px;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(231,201,130,.35);
  border-radius: 50% 50% 0 0;
  content: "";
}

.brew-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  box-shadow: 0 33px 70px rgba(8,29,23,.34);
  filter: saturate(.72) sepia(.08);
}

.brew-orbit {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -26px;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(231,201,130,.55);
  border-radius: 50%;
  background: rgba(23,63,50,.84);
  backdrop-filter: blur(8px);
  animation: drift 6s ease-in-out infinite;
}

.brew-orbit::before,
.brew-orbit::after {
  position: absolute;
  border: 1px solid rgba(231,201,130,.32);
  border-radius: inherit;
  content: "";
}

.brew-orbit::before { inset: 12px; }
.brew-orbit::after { inset: 25px; }
.brew-orbit span,
.brew-orbit i,
.brew-orbit b {
  position: absolute;
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
}
.brew-orbit span { top: 4px; left: 42px; }
.brew-orbit i { right: 3px; bottom: 19px; }
.brew-orbit b { bottom: 3px; left: 21px; }

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}

.brew-content > p {
  max-width: 510px;
  margin-top: 26px;
  color: rgba(255,255,255,.61);
  font-family: var(--serif);
}

.brew-tabs {
  display: flex;
  gap: 6px;
  margin-top: 30px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.14);
}

.brew-tabs button {
  flex: 1;
  min-height: 43px;
  padding: 8px 10px;
  color: rgba(255,255,255,.62);
  border: 0;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.brew-tabs button[aria-selected="true"] {
  color: var(--pine-950);
  background: var(--gold-soft);
}

.brew-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}

.brew-data > div {
  display: flex;
  min-height: 126px;
  padding: 14px 10px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.brew-data small {
  margin-top: 8px;
  color: rgba(255,255,255,.42);
  font-size: 8px;
  letter-spacing: .13em;
}

.brew-data strong {
  font-family: Georgia, var(--serif);
  font-size: clamp(13px, 3.7vw, 18px);
  font-weight: 400;
}

.brew-icon {
  position: relative;
  width: 23px;
  height: 23px;
  color: var(--gold-soft);
}

.brew-icon.temp::before {
  position: absolute;
  top: 1px;
  left: 8px;
  width: 5px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 5px 5px 0 0;
  content: "";
}
.brew-icon.temp::after {
  position: absolute;
  bottom: 1px;
  left: 5px;
  width: 11px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--pine-700);
  content: "";
}
.brew-icon.weight::before {
  position: absolute;
  inset: 4px 2px 1px;
  border: 1px solid currentColor;
  border-radius: 50% 50% 3px 3px;
  content: "";
}
.brew-icon.time::before {
  position: absolute;
  inset: 2px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}
.brew-icon.time::after {
  position: absolute;
  top: 6px;
  left: 11px;
  width: 1px;
  height: 7px;
  background: currentColor;
  box-shadow: 3px 6px 0 currentColor;
  content: "";
}

.brew-content .brew-tip {
  position: relative;
  margin-top: 17px;
  padding-left: 30px;
  color: rgba(255,255,255,.48);
  font-family: var(--sans);
  font-size: 10px;
}

.brew-tip span {
  position: absolute;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(231,201,130,.45);
  border-radius: 50% 0 50% 50%;
  font-family: var(--display);
  font-size: 9px;
}

/* Contact */
.contact {
  background:
    linear-gradient(90deg, rgba(23,63,50,.04) 1px, transparent 1px) 50% 0 / 25% 100%,
    var(--paper);
}

.contact-grid {
  display: grid;
  gap: 48px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-top: 23px;
  color: var(--ink-soft);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-details a,
.contact-details p {
  display: flex;
  flex-direction: column;
  color: var(--pine-700);
  font-family: var(--serif);
  font-size: 16px;
}

.contact-details span {
  color: #8a928e;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .14em;
}

.contact-form {
  padding: 28px 23px;
  background: rgba(255,253,247,.68);
  border: 1px solid var(--line);
  box-shadow: 0 25px 65px rgba(31,62,50,.08);
}

.contact-form label:not(.consent) {
  display: block;
  margin-bottom: 22px;
  color: #53645c;
  font-size: 10px;
  letter-spacing: .12em;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(23,63,50,.24);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  letter-spacing: 0;
  transition: border-color .2s ease;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--pine-700);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a2a8a4;
}

.contact-form input[aria-invalid="true"] {
  border-color: #a44838;
}

.field-error {
  display: block;
  min-height: 14px;
  margin-top: 2px;
  color: #a44838;
  font-size: 9px;
  letter-spacing: 0;
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 5px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #78837d;
  font-size: 10px;
  cursor: pointer;
}

.consent input {
  width: 15px;
  height: 15px;
  margin: 4px 0 0;
  accent-color: var(--pine-700);
}

.form-status {
  min-height: 22px;
  margin-top: 13px;
  color: var(--pine-700);
  font-size: 11px;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  color: var(--white);
  background: var(--pine-950);
}

.site-footer::before {
  position: absolute;
  bottom: -270px;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(214,174,89,.07);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.footer-top {
  position: relative;
  display: grid;
  gap: 30px;
  padding-bottom: 55px;
}

.footer-top > p {
  color: rgba(255,255,255,.64);
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.55;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: .12em;
}

.footer-top nav a:hover {
  color: var(--gold-soft);
}

.back-top {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(231,201,130,.39);
  border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}

.back-top:hover {
  color: var(--pine-950);
  background: var(--gold-soft);
}

.footer-bottom {
  position: relative;
  display: flex;
  padding-block: 18px;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.31);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 8px;
  letter-spacing: .11em;
}

/* Reveal animation */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
}

.js .reveal[data-delay="1"] { transition-delay: .1s; }
.js .reveal[data-delay="2"] { transition-delay: .2s; }
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 600px) {
  :root {
    --container: min(1160px, calc(100vw - 72px));
  }

  .section {
    padding-block: 120px;
  }

  .origin-data {
    grid-template-columns: repeat(4, 1fr);
  }

  .tea-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tea-card-aged {
    grid-column: 1 / -1;
  }

  .tea-card-aged .tea-tin {
    margin-top: 30px;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .form-submit {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .site-header {
    height: 88px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    visibility: visible;
    width: auto;
    flex-direction: row;
    gap: clamp(24px, 3vw, 43px);
    color: inherit;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .12em;
  }

  .origin .section-heading h2 {
    font-size: 56px;
  }

  .hero-inner {
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(30px, 5vw, 82px);
    padding-top: 128px;
    padding-bottom: 82px;
  }

  .hero-copy h1 {
    font-size: clamp(66px, 6.6vw, 98px);
  }

  .hero-visual {
    min-height: 600px;
    margin-top: 0;
  }

  .hero-image-wrap {
    inset: 0 0 0 45px;
  }

  .hero-stamp {
    top: 8%;
    right: -23px;
    width: 80px;
    height: 80px;
  }

  .tasting-card {
    right: -32px;
    bottom: 9%;
  }

  .scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 24px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.35);
    font-family: Georgia, serif;
    font-size: 8px;
    letter-spacing: .16em;
    writing-mode: vertical-rl;
  }

  .scroll-cue span {
    position: relative;
    width: 1px;
    height: 34px;
    overflow: hidden;
    background: rgba(255,255,255,.22);
  }

  .scroll-cue span::after {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold-soft);
    content: "";
    animation: scrollLine 2.3s ease-in-out infinite;
  }

  @keyframes scrollLine { to { top: 110%; } }

  .origin-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 90px;
  }

  .origin-intro {
    align-self: end;
    padding-bottom: 7px;
  }

  .origin-composition,
  .origin-data {
    grid-column: 1 / -1;
  }

  .origin-composition {
    min-height: 630px;
    margin-top: 35px;
  }

  .mountain-art {
    right: 10%;
    bottom: 0;
  }

  .origin-note {
    right: 0;
    bottom: 46px;
    width: 340px;
    padding: 31px 34px;
  }

  .origin-note blockquote {
    font-size: 31px;
  }

  .origin-data {
    margin-top: 30px;
  }

  .origin-data li {
    min-height: 145px;
    padding-left: 28px;
  }

  .origin-data strong {
    font-size: 38px;
  }

  .tea-heading {
    grid-template-columns: 1.3fr .7fr;
    align-items: end;
    margin-bottom: 70px;
  }

  .tea-heading > p {
    justify-self: end;
    padding-bottom: 12px;
  }

  .tea-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .tea-card-aged {
    grid-column: auto;
  }

  .tea-card {
    min-height: 610px;
    padding: 26px;
  }

  .tea-tin,
  .tea-card-aged .tea-tin {
    width: 145px;
    height: 202px;
    margin-top: 42px;
    margin-bottom: 38px;
  }

  .craft-head {
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 90px;
  }

  .craft-head > p {
    padding-bottom: 9px;
  }

  .process-list {
    grid-template-columns: repeat(6, 1fr);
    margin-top: 75px;
  }

  .process-list li {
    min-height: 235px;
    padding: 22px;
  }

  .process-icon {
    margin-top: 31px;
    margin-bottom: 25px;
  }

  .craft-quote {
    min-height: 510px;
    margin-top: 95px;
  }

  .craft-quote blockquote {
    padding-top: 145px;
  }

  .brew-grid {
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: clamp(75px, 10vw, 145px);
  }

  .brew-content {
    max-width: 580px;
  }

  .brew-visual {
    padding-right: 44px;
  }

  .brew-visual img {
    max-height: 660px;
  }

  .brew-data > div {
    min-height: 145px;
    padding-left: 21px;
  }

  .contact-grid {
    grid-template-columns: .84fr 1.16fr;
    align-items: center;
    gap: clamp(60px, 9vw, 125px);
  }

  .contact-form {
    padding: 42px 45px 34px;
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr auto;
    align-items: center;
    gap: 35px;
  }

  .footer-top nav {
    justify-content: center;
  }
}

@media (min-width: 1280px) {
  .hero-inner {
    min-height: 860px;
  }

  .hero::after {
    position: absolute;
    z-index: 1;
    right: -6vw;
    bottom: -38vw;
    width: 69vw;
    height: 69vw;
    border: 1px solid rgba(231,201,130,.06);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(231,201,130,.022), 0 0 0 180px rgba(231,201,130,.014);
    content: "";
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
