:root {
  --header-h: 78px;
  --paper: #f4efe5;
  --paper-soft: #fbf7ee;
  --ivory: #fffaf0;
  --ink: #1f1710;
  --ink-soft: #4d4035;
  --muted: #766a5d;
  --forest: #1c3324;
  --forest-deep: #122018;
  --moss: #60704d;
  --wine: #7a2420;
  --lacquer: #a63a2d;
  --gold: #bd9855;
  --gold-soft: #ecd5a1;
  --line: rgba(45, 34, 24, 0.16);
  --line-dark: rgba(255, 250, 240, 0.16);
  --shadow: 0 30px 90px rgba(38, 25, 12, 0.18);
  --shadow-deep: 0 36px 120px rgba(0, 0, 0, 0.3);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

body::selection {
  background: rgba(189, 152, 85, 0.35);
}

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

main,
section,
.hero-copy,
.origin-copy,
.origin-image,
.product-stage,
.product-summary,
.selection-guide,
.selection-intro,
.selection-cards,
.tea-card,
.proof-layout,
.proof-main,
.brand-timeline,
.aesthetic-copy,
.aesthetic-media,
.heritage-grid,
.contact-visual,
.store-card {
  min-width: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 8px 64px;
  background: rgba(251, 247, 238, 0.9);
  border-bottom: 1px solid rgba(45, 34, 24, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 168px;
}

.brand-logo {
  width: 158px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 25px;
  color: #4b4138;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding-block: 4px;
  transition: color 160ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.36);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--wine);
}

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

.nav a.is-active {
  color: var(--wine);
}

.header-action,
.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
}

.header-action {
  padding: 0 18px;
  background: var(--forest);
  color: var(--ivory);
  font-size: 14px;
  transition: background 160ms ease, transform 160ms ease;
}

.header-action:hover {
  background: var(--wine);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, calc(100svh - var(--header-h)), 760px);
  align-items: end;
  padding: 64px 70px 42px;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--ivory);
}

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

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 21, 16, 0.94) 0%, rgba(12, 21, 16, 0.78) 38%, rgba(12, 21, 16, 0.2) 100%),
    linear-gradient(0deg, rgba(12, 21, 16, 0.78) 0%, rgba(12, 21, 16, 0.2) 54%, rgba(12, 21, 16, 0.12) 100%);
}

.hero::after {
  z-index: 2;
  border: 1px solid rgba(255, 250, 240, 0.07);
  box-shadow: inset 0 -96px 140px rgba(0, 0, 0, 0.36);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: heroDepth 1200ms ease-out both;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
  animation: heroEnter 760ms ease-out both;
}

.eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.hero-kicker,
.opening-statement h2,
.origin-copy h2,
.section-heading h2,
.product-summary h3,
.proof-main h3,
.aesthetic-copy h2,
.heritage-grid h3,
.store-card h3,
.footer p {
  font-family: "Noto Serif SC", "SimSun", serif;
}

.hero h1 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(76px, 8vw, 128px);
  font-weight: 700;
  line-height: 0.95;
  text-wrap: balance;
}

.hero-kicker {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--gold-soft);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 18px;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 15px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--ivory);
  color: var(--forest-deep);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.btn.secondary {
  border-color: rgba(255, 250, 240, 0.38);
  color: var(--ivory);
}

.btn.secondary:hover {
  background: rgba(255, 250, 240, 0.1);
  border-color: rgba(255, 250, 240, 0.66);
}

.hero-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 44px 0 0;
  border: 1px solid rgba(239, 215, 161, 0.24);
  background: rgba(255, 250, 240, 0.12);
  animation: heroEnter 860ms ease-out 120ms both;
}

.hero-facts div {
  min-height: 92px;
  padding: 18px 22px;
  background: rgba(12, 21, 16, 0.45);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  color: var(--gold-soft);
  font-family: "Noto Serif SC", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

section {
  padding: 118px 70px;
}

.mobile-section-nav {
  display: none;
}

.opening-statement {
  padding-bottom: 32px;
  background:
    linear-gradient(180deg, var(--ivory) 0%, var(--paper) 100%);
  text-align: center;
}

.statement-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.opening-statement h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

.opening-statement p:last-child {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.9;
}

.origin {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 78px;
  align-items: center;
  padding-top: 36px;
  background: var(--paper);
}

.origin-copy h2,
.section-heading h2,
.aesthetic-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.16;
  text-wrap: balance;
}

.origin-text {
  display: grid;
  gap: 22px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.96;
}

.origin-text p {
  margin: 0;
}

.origin-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.origin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.origin-image:hover img,
.aesthetic-media:hover img,
.product-stage > img:hover {
  transform: scale(1.025);
}

.origin-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  width: min(360px, calc(100% - 36px));
  padding: 14px 16px;
  background: rgba(18, 32, 24, 0.74);
  border: 1px solid rgba(236, 205, 161, 0.22);
  border-radius: 6px;
  color: var(--ivory);
  backdrop-filter: blur(8px);
}

.origin-image strong {
  color: var(--gold-soft);
  font-family: "Noto Serif SC", serif;
  font-size: 18px;
}

.origin-image span {
  color: rgba(255, 250, 240, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.brand-pillars {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.89fr) minmax(0, 0.89fr);
  gap: 1px;
  padding-block: 0;
  background: var(--forest-deep);
  color: var(--ivory);
}

.brand-pillars article {
  min-height: 260px;
  padding: 46px 42px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.035)),
    var(--forest-deep);
}

.brand-pillars article:first-child {
  background:
    linear-gradient(135deg, rgba(236, 213, 161, 0.14), rgba(255, 250, 240, 0.04)),
    var(--wine);
}

.brand-pillars span,
.proof-list span {
  display: block;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
}

.brand-pillars h3 {
  margin: 18px 0 12px;
  color: var(--ivory);
  font-family: "Noto Serif SC", serif;
  font-size: 32px;
  line-height: 1.18;
}

.brand-pillars article:first-child h3 {
  font-size: clamp(34px, 3vw, 44px);
}

.brand-pillars p {
  margin: 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 16px;
}

.standards {
  background: var(--ivory);
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  border: 1px solid var(--line);
  background: var(--line);
}

.standard-grid article {
  min-height: 300px;
  padding: 34px 30px;
  background:
    linear-gradient(180deg, rgba(244, 239, 229, 0.72), rgba(255, 250, 240, 0.9)),
    var(--ivory);
}

.standard-grid span,
.product-path span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.standard-grid h3,
.product-path h3 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
  line-height: 1.2;
}

.standard-grid p,
.product-path p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.products {
  background:
    linear-gradient(180deg, #f8f1e7 0%, var(--paper) 46%, #e8ddcb 100%);
}

.section-heading {
  max-width: 960px;
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.86;
}

.narrow {
  max-width: 860px;
}

.product-path {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.18fr) minmax(0, 0.96fr) minmax(0, 1.02fr);
  gap: 1px;
  margin-top: 46px;
  border: 1px solid rgba(45, 34, 24, 0.14);
  background: rgba(45, 34, 24, 0.14);
}

.product-path article {
  min-height: 210px;
  padding: 30px;
  background: rgba(255, 250, 240, 0.66);
}

.product-path article:nth-child(2) {
  min-height: 250px;
}

.product-path article:nth-child(2) {
  background: rgba(236, 213, 161, 0.18);
}

.product-path article:nth-child(3) {
  background: rgba(96, 112, 77, 0.1);
}

.product-path article:nth-child(4) {
  background: rgba(122, 36, 32, 0.08);
}

.product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 52px;
}

.product-stage > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 700ms ease;
}

.product-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.7);
}

.product-summary h3 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.22;
}

.product-summary ul {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.product-summary li {
  display: grid;
  gap: 4px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.product-summary li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.product-summary span {
  color: var(--wine);
  font-size: 14px;
  font-weight: 850;
}

.product-summary strong {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
}

.selection-guide {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(45, 34, 24, 0.14);
  background: rgba(45, 34, 24, 0.14);
}

.selection-intro,
.selection-cards article {
  background: rgba(255, 250, 240, 0.78);
}

.selection-intro {
  padding: 34px 36px;
}

.selection-intro h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif SC", serif;
  font-size: 32px;
  line-height: 1.2;
}

.selection-intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.86;
}

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

.selection-cards article {
  min-height: 210px;
  padding: 32px 30px;
}

.selection-cards span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.selection-cards h4 {
  margin: 16px 0 10px;
  color: var(--forest-deep);
  font-family: "Noto Serif SC", serif;
  font-size: 24px;
  line-height: 1.2;
}

.selection-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.tea-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.tea-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 18px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 18px 54px rgba(47, 31, 15, 0.08);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.tea-card-media {
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-soft);
}

.tea-card-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tea-card:hover {
  border-color: rgba(122, 36, 32, 0.34);
  box-shadow: 0 24px 70px rgba(47, 31, 15, 0.13);
  transform: translateY(-4px);
}

.tea-card:hover .tea-card-media img {
  transform: scale(1.025);
}

.tea-card-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.tea-card-head span {
  color: var(--wine);
  font-size: 13px;
  font-weight: 850;
}

.tea-card-head h3 {
  margin: 10px 0 5px;
  color: var(--ink);
  font-family: "Noto Serif SC", serif;
  font-size: 31px;
  line-height: 1.2;
}

.tea-card-head p {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.tea-card dl {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.tea-card dl div {
  display: grid;
  gap: 5px;
}

.tea-card dt {
  color: var(--wine);
  font-size: 14px;
  font-weight: 850;
}

.tea-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.tea-card-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(122, 36, 32, 0.3);
  border-radius: 4px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 850;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.tea-card-link:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--ivory);
  transform: translateY(-1px);
}

.proof {
  background: var(--forest-deep);
  color: var(--ivory);
}

.proof .section-heading h2 {
  color: var(--ivory);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 52px;
}

.proof-main {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 32, 24, 0.12), rgba(18, 32, 24, 0.94)),
    url("./assets/tea-garden.png") center / cover;
  box-shadow: var(--shadow-deep);
}

.proof-main h3 {
  max-width: 620px;
  margin: 0;
  color: var(--ivory);
  font-size: 46px;
  line-height: 1.18;
}

.proof-main p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: 17px;
}

.brand-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.12);
  background: rgba(255, 250, 240, 0.1);
  list-style: none;
}

.brand-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 34px;
  background: rgba(255, 250, 240, 0.055);
}

.brand-timeline li + li {
  border-top: 1px solid rgba(255, 250, 240, 0.1);
}

.brand-timeline li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 132px;
  width: 1px;
  background: rgba(236, 213, 161, 0.22);
  content: "";
}

.brand-timeline time {
  color: var(--gold-soft);
  font-family: "Noto Serif SC", serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
}

.brand-timeline div {
  position: relative;
  display: grid;
  gap: 8px;
}

.brand-timeline div::before {
  position: absolute;
  top: 7px;
  left: -35px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--gold-soft);
  border-radius: 999px;
  background: var(--forest-deep);
  content: "";
}

.brand-timeline strong {
  color: var(--gold-soft);
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
  line-height: 1.22;
}

.brand-timeline p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 16px;
}

.aesthetic {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.86fr);
  gap: 76px;
  align-items: center;
  background: var(--ivory);
}

.aesthetic-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.aesthetic-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 700ms ease;
}

.aesthetic-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.94;
}

.aesthetic-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.aesthetic-notes span {
  padding: 11px 16px;
  border: 1px solid rgba(96, 112, 77, 0.22);
  border-radius: 4px;
  color: var(--forest);
  font-weight: 800;
}

.heritage {
  background:
    linear-gradient(180deg, #f1e7d8 0%, var(--paper) 100%);
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.heritage-grid article {
  overflow: hidden;
  min-height: 300px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.68);
}

.heritage-grid img {
  width: calc(100% + 88px);
  max-width: none;
  aspect-ratio: 4 / 3;
  margin: -44px -44px 32px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(0.98);
}

.heritage-grid article:first-child img {
  object-position: center 38%;
}

.heritage-grid article:nth-child(2) img {
  object-position: center 42%;
}

.heritage-grid h3 {
  margin: 0;
  color: var(--wine);
  font-size: 35px;
}

.heritage-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 15px;
}

.heritage-grid p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact {
  background:
    linear-gradient(180deg, var(--paper) 0%, #e8ddcb 100%);
}

.contact-heading {
  margin: 0 auto;
  text-align: center;
}

.contact-visual {
  position: relative;
  max-width: 1120px;
  margin: 46px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(0.98);
}

.contact-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  width: min(420px, calc(100% - 44px));
  padding: 18px 20px;
  background: rgba(18, 32, 24, 0.88);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 6px;
  color: var(--ivory);
  backdrop-filter: blur(12px);
}

.contact-visual strong {
  color: var(--gold-soft);
  font-family: "Noto Serif SC", serif;
  font-size: 22px;
}

.contact-visual span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.store-card {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 18px 48px rgba(40, 26, 12, 0.08);
}

.store-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 25px;
}

.store-card p {
  margin: 0;
  color: var(--muted);
}

.store-card > a,
.contact-people a {
  color: var(--wine);
  font-size: 22px;
  font-weight: 850;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 28px;
}

.store-actions a {
  color: var(--wine);
  font-size: 22px;
  font-weight: 850;
}

.store-actions .map-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(122, 36, 32, 0.28);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.store-actions .map-link:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--ivory);
}

.contact-people {
  background: var(--wine);
  color: var(--ivory);
}

.contact-people h3 {
  color: var(--ivory);
}

.contact-people p {
  color: rgba(255, 250, 240, 0.82);
}

.contact-people a {
  color: var(--gold-soft);
  font-size: inherit;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 70px;
  background: #17100b;
  color: rgba(255, 250, 240, 0.82);
}

.footer p {
  margin: 0;
  color: var(--ivory);
  font-size: 20px;
  font-weight: 700;
}

.footer span {
  color: rgba(255, 250, 240, 0.62);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDepth {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.035);
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 38px;
  }

  .nav {
    display: none;
  }

  .hero,
  section {
    padding-inline: 38px;
  }

  .origin,
  .product-stage,
  .selection-guide,
  .proof-layout,
  .aesthetic {
    grid-template-columns: 1fr;
  }

  .brand-pillars,
  .standard-grid,
  .product-path {
    grid-template-columns: 1fr;
  }

  .selection-cards {
    grid-template-columns: 1fr;
  }

  .product-stage > img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 62px;
  }

  section[id] {
    scroll-margin-top: calc(var(--header-h) + 62px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 118px;
    max-height: 44px;
  }

  .header-action {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
    padding: 40px 18px 24px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(12, 21, 16, 0.97), rgba(12, 21, 16, 0.76)),
      linear-gradient(0deg, rgba(12, 21, 16, 0.84), rgba(12, 21, 16, 0.18));
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-kicker {
    margin-top: 18px;
    font-size: 33px;
    line-height: 1.15;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 15.5px;
    line-height: 1.76;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-facts div {
    min-height: auto;
    padding: 14px 16px;
  }

  .hero-facts dt {
    font-size: 22px;
  }

  section {
    padding: 66px 18px;
  }

  .mobile-section-nav {
    position: sticky;
    top: var(--header-h);
    z-index: 24;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 9px 18px 10px;
    background: rgba(251, 247, 238, 0.94);
    border-bottom: 1px solid rgba(45, 34, 24, 0.1);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
  }

  .mobile-section-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-section-nav a {
    flex: 0 0 auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border: 1px solid rgba(28, 51, 36, 0.18);
    border-radius: 4px;
    color: var(--forest-deep);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.2;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
  }

  .mobile-section-nav a.is-active {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--ivory);
  }

  .opening-statement {
    padding-bottom: 24px;
  }

  .origin {
    padding-top: 30px;
  }

  .opening-statement h2,
  .origin-copy h2,
  .section-heading h2,
  .aesthetic-copy h2 {
    font-size: 30px;
    line-height: 1.24;
  }

  .opening-statement p:last-child,
  .section-heading p:not(.eyebrow),
  .origin-text,
  .aesthetic-copy p:not(.eyebrow),
  .heritage-grid p {
    font-size: 16px;
  }

  .origin,
  .product-stage,
  .proof-layout,
  .aesthetic {
    gap: 30px;
  }

  .origin-image figcaption {
    position: static;
    width: auto;
    border-radius: 0;
  }

  .contact-visual figcaption {
    position: static;
    width: auto;
    border-radius: 0;
  }

  .brand-pillars article,
  .standard-grid article,
  .product-path article,
  .product-summary,
  .selection-intro,
  .selection-cards article,
  .tea-card,
  .proof-main,
  .brand-timeline li,
  .heritage-grid article,
  .store-card {
    padding: 24px;
  }

  .product-path,
  .product-stage {
    margin-top: 34px;
  }

  .product-path article {
    padding-block: 22px;
  }

  .product-stage > img {
    aspect-ratio: 4 / 3;
    object-position: center 42%;
  }

  .product-summary ul {
    gap: 12px;
    margin-top: 24px;
  }

  .selection-guide {
    margin-top: 24px;
  }

  .selection-intro,
  .selection-cards article {
    padding-block: 22px;
  }

  .brand-pillars article {
    min-height: auto;
  }

  .standard-grid article,
  .product-path article {
    min-height: auto;
  }

  .product-summary h3,
  .selection-intro h3,
  .brand-pillars h3 {
    font-size: 27px;
  }

  .tea-card-grid,
  .heritage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .tea-card-grid {
    gap: 18px;
    margin-top: 24px;
  }

  .heritage-grid img {
    width: calc(100% + 52px);
    margin: -26px -26px 24px;
  }

  .contact-visual {
    margin-top: 32px;
  }

  .contact-visual img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

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

  .tea-card-media {
    margin-bottom: 18px;
  }

  .tea-card-media img {
    aspect-ratio: 4 / 3;
    object-position: center 38%;
  }

  .tea-card-head {
    padding-bottom: 18px;
  }

  .tea-card dl {
    gap: 12px;
    margin-top: 18px;
  }

  .tea-card dd {
    font-size: 14.5px;
    line-height: 1.68;
  }

  .proof-main {
    min-height: 360px;
  }

  .proof-main h3 {
    font-size: 31px;
  }

  .brand-timeline {
    gap: 1px;
  }

  .brand-timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .brand-timeline li::before,
  .brand-timeline div::before {
    display: none;
  }

  .brand-timeline time {
    font-size: 22px;
  }

  .brand-timeline strong {
    font-size: 25px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 18px;
  }

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

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

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