:root {
  --paper: #f5f0e7;
  --paper-soft: #fbf8f2;
  --paper-deep: #e8dfd0;
  --ink: #2d2a25;
  --muted: #6f695f;
  --quiet: #9b9285;
  --gold: #b79a5d;
  --gold-soft: rgba(183, 154, 93, 0.34);
  --brown: #514235;
  --smoke: #181714;
  --line: rgba(81, 66, 53, 0.16);
  --white: #fffdf8;
  --shadow: 0 28px 90px rgba(50, 40, 28, 0.16);
  --dm-heading: #5f5b54;
  --dm-body: #5f5b54;
  --dm-secondary: #5f5b54;
  --dm-line: #c7c0b5;
  --dm-line-soft: rgba(199, 192, 181, 0.64);
  --dm-line-faint: rgba(199, 192, 181, 0.46);
  --dm-accent: #a08a55;
  --dm-accent-soft: rgba(160, 138, 85, 0.38);
  --header-ink: #1f1f1f;
  --font-serif: "Noto Serif TC", "Noto Serif CJK TC", "Songti TC", "STSong", "PMingLiU", "MingLiU", serif;
  --font-sans: "Noto Sans TC", "Noto Sans CJK TC", "PingFang TC", "Microsoft JhengHei", "Heiti TC", Arial, sans-serif;
  --font-en-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.78;
  letter-spacing: 0;
}

html[lang="ko"] {
  --font-sans: "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --font-serif: "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

html[lang="ko"] .section-title h2,
html[lang="ko"] .collection-copy h2,
html[lang="ko"] .brew-heading h2,
html[lang="ko"] .stores-head h2,
html[lang="ko"] .catalog-title h2,
html[lang="ko"] .contact-heading h2 {
  font-family: var(--font-sans);
  font-weight: 500;
}

html[lang="ko"] .brew-principles ol {
  line-height: 1.72;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--header-ink);
  background: transparent;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  color: var(--header-ink);
  border-bottom-color: rgba(81, 66, 53, 0.14);
  background: rgba(245, 240, 231, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1360px, calc(100% - 56px));
  min-height: 60px;
  margin: 0 auto;
}

.brand-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-width: max-content;
  font-size: 19px;
}

.brand-link img {
  width: auto;
  height: 21px;
  flex: 0 0 auto;
}

.brand-link span {
  display: block;
}

html[lang="en"] .brand-link {
  font-family: var(--font-en-serif), Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.header-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
}

.site-nav,
.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-toggle,
.language-toggle {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle {
  flex-direction: column;
}

.language-toggle {
  color: currentColor;
  transition: color 180ms ease, opacity 180ms ease;
}

.language-toggle:hover {
  opacity: 0.72;
}

.language-icon {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(36deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-36deg);
}

.nav-list,
.language-drawer {
  position: fixed;
  top: 64px;
  right: 0;
  z-index: 40;
  display: grid;
  width: min(190px, calc(100vw - 28px));
  margin: 0;
  padding: 5px 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 13.5px;
  list-style: none;
  visibility: hidden;
  background: rgba(248, 246, 240, 0.76);
  border: 1px solid rgba(81, 66, 53, 0.12);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: -6px 12px 22px rgba(50, 40, 28, 0.035);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0.85;
  transform: translateX(100%);
  transition: opacity 280ms ease, transform 280ms ease, visibility 280ms ease;
}

.nav-list {
  display: grid;
  list-style: none;
}

.language-drawer {
  display: grid;
  gap: 2px;
}

.site-nav.is-open .nav-list,
.language-switcher.is-open .language-drawer {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.drawer-scrim {
  position: fixed;
  top: 60px;
  right: 0;
  left: 0;
  z-index: 30;
  height: calc(100vh - 60px);
  visibility: hidden;
  background: rgba(24, 23, 20, 0.08);
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.drawer-scrim.is-active {
  visibility: visible;
  opacity: 1;
}

.nav-list a,
.language-option {
  display: block;
  min-height: 40px;
  padding: 8px 18px;
  color: var(--brown);
  line-height: 1.75;
  text-align: center;
  border-bottom: 1px solid rgba(81, 66, 53, 0.055);
}

.language-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.language-option {
  font-size: 14px;
}

.language-option.is-active {
  color: var(--quiet);
  text-decoration: underline;
  text-underline-offset: 5px;
  background: transparent;
  cursor: default;
}

.nav-list li:last-child a,
.language-list li:last-child .language-option {
  border-bottom: 0;
}

.nav-list a:hover,
.language-option:hover {
  background: rgba(245, 240, 231, 0.42);
}

.section {
  position: relative;
  overflow: hidden;
}

.page-frame {
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  color: var(--white);
  background: var(--smoke);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(18, 16, 13, 0.1) 0%, rgba(18, 16, 13, 0.18) 44%, rgba(18, 16, 13, 0.54) 100%),
    linear-gradient(90deg, rgba(18, 16, 13, 0.34), rgba(18, 16, 13, 0.1) 56%, rgba(18, 16, 13, 0.16));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  align-items: end;
  justify-items: start;
  width: min(1360px, calc(100% - 128px));
  padding: 130px 0 89px;
}

.hero-lockup {
  width: min(560px, 100%);
  text-align: left;
  transform: none;
}

.hero-lockup h1 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 76px;
  font-weight: 400;
  line-height: 1.08;
}

.hero-logo {
  width: min(320px, 100%);
  height: auto;
  transform: translateX(-1px);
}

.hero-brand-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.hero-brand-fallback.is-visible {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  clip-path: none;
}

.hero-lockup p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.45;
}

.hero-lockup span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 253, 248, 0.82);
  font-family: var(--font-en-serif);
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: none;
  border-top: 0;
}

.hero-lockup span::before {
  display: block;
  width: min(410px, 100%);
  height: 1px;
  margin: 0 0 14px;
  content: "";
  background: linear-gradient(90deg, rgba(183, 154, 93, 0.9), rgba(183, 154, 93, 0.35), rgba(183, 154, 93, 0));
}

.section-title {
  width: min(620px, 100%);
  margin: 0 0 48px auto;
  text-align: right;
}

.section-title.left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-title h2,
.collection-copy h2,
.brew-heading h2,
.stores-head h2,
.catalog-title h2 {
  margin: 0;
  color: var(--dm-heading);
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.24;
}

.section-title span,
.collection-copy span,
.brew-heading span,
.stores-head span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 13px 0 11px;
  background: linear-gradient(90deg, transparent, var(--dm-accent), transparent);
}

.section-title.left span,
.stores-head span {
  background: linear-gradient(90deg, var(--dm-accent), transparent);
}

.section-title p,
.collection-copy p,
.brew-heading p,
.stores-head p {
  margin: 0;
  color: var(--dm-secondary);
  font-family: var(--font-en-serif);
  font-size: 18px;
  line-height: 1.45;
  text-transform: uppercase;
}

.body-copy {
  color: var(--dm-body);
  font-size: 19px;
  font-weight: 350;
  line-height: 2.05;
}

.body-copy p {
  margin: 0 0 22px;
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: auto;
  padding: 124px max(34px, calc((100% - 1360px) / 2));
  background: var(--paper-soft);
}

.story-anchor {
  position: absolute;
  top: 124px;
  left: 0;
  display: block;
  height: 0;
  scroll-margin-top: calc(52px + max(34px, calc((100vw - 1360px) / 2)));
}

.story-map {
  width: 100%;
  height: 64svh;
  min-height: 460px;
  max-height: 720px;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
}

.story-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.95);
}

.story-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.story-copy .section-title {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.story-copy .section-title span {
  background: linear-gradient(90deg, var(--dm-accent), transparent);
}

.craft-section {
  padding: 138px 0;
  color: var(--white);
  background: var(--smoke);
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.craft-image {
  height: 78svh;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.92);
}

.craft-copy {
  max-width: 560px;
}

.craft-copy .section-title h2,
.craft-copy .body-copy {
  color: var(--white);
}

.craft-copy .section-title p {
  color: rgba(255, 253, 248, 0.66);
}

.craft-copy .body-copy {
  color: rgba(255, 253, 248, 0.74);
}

.award-record ul {
  display: grid;
  gap: 5px;
  padding: 0;
  margin: 12px 0 0;
  font-size: 0.94em;
  list-style: none;
}

.award-record li {
  margin: 0;
}

.award-year::after {
  content: "　";
}

.legacy-section {
  padding: 140px 0 150px;
  background: var(--paper-soft);
}

.legacy-layout {
  display: grid;
  gap: 62px;
  justify-items: center;
}

.legacy-copy {
  width: min(760px, 100%);
  max-width: 620px;
}

.legacy-opener {
  width: min(1080px, 100%);
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.legacy-opener img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .legacy-opener {
    width: min(100%, 800px);
    aspect-ratio: 5 / 3;
    height: auto;
    max-height: none;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    border-radius: 6px;
  }

  .legacy-opener img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center center;
  }
}

.collection {
  min-height: 92svh;
  color: var(--white);
  background: var(--smoke);
}

.collection img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(18, 16, 13, 0.18);
}

.collection-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 92svh;
  align-content: center;
  justify-items: end;
  text-align: right;
}

.collection-copy h2,
.collection-copy p {
  color: var(--white);
}

.collection-copy span {
  width: min(520px, 100%);
  background: linear-gradient(90deg, transparent, rgba(183, 154, 93, 0.9));
}

@media (min-width: 768px) {
  .collection,
  .collection-copy {
    min-height: 76svh;
  }

  .collection img {
    object-fit: cover;
    object-position: center center;
  }
}

.teas {
  padding: 132px 0 150px;
  background: var(--paper-soft);
}

.catalog-title {
  width: min(760px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.catalog-title h2 {
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dm-line);
}

.catalog-title p {
  margin: 14px 0 0;
  color: var(--dm-secondary);
  font-family: var(--font-en-serif);
  font-size: 18px;
  line-height: 1.45;
}

.catalog-title div {
  margin: 26px auto 0;
  color: var(--dm-body);
  font-size: 17px;
  font-weight: 350;
  line-height: 1.9;
}

.tea-card-carousel {
  display: flex;
  width: min(100%, 1080px);
  max-width: 100%;
  box-sizing: border-box;
  gap: 24px;
  margin-inline: auto;
  padding: 4px 0 18px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tea-card-carousel::-webkit-scrollbar {
  display: none;
}

.tea-card-carousel::after {
  display: none;
  content: "";
}

.tea-card {
  position: relative;
  flex: 0 0 380px;
  max-width: 380px;
  min-width: 0;
  box-sizing: border-box;
  padding: 34px 34px 32px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--dm-accent-soft);
  border-radius: 6px;
  scroll-snap-align: start;
}

.tea-card-count {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--dm-secondary);
  font-family: var(--font-en-serif);
  font-size: 13px;
  line-height: 1.4;
}

.tea-card-heading {
  padding-right: 58px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dm-line-faint);
}

.tea-card-heading h3 {
  margin: 0;
  color: var(--dm-heading);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: normal;
  word-break: normal;
}

.tea-card-heading p {
  margin: 7px 0 0;
  color: var(--dm-secondary);
  font-family: var(--font-en-serif);
  font-size: 17px;
  line-height: 1.45;
}

.tea-flavor-block {
  margin-top: 22px;
}

.tea-flavor-block strong {
  display: block;
  margin-bottom: 9px;
  color: var(--dm-secondary);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.tea-flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  color: var(--dm-body);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
}

.tea-flavors span {
  padding: 0 12px;
  border-right: 1px solid var(--dm-line-soft);
}

.tea-flavors span:first-child {
  padding-left: 0;
}

.tea-flavors span:last-child {
  padding-right: 0;
  border-right: 0;
}

.tea-card-metrics {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--dm-body);
  font-family: var(--font-sans);
  font-size: 16px;
}

.tea-card-metrics span {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dots {
  display: inline-flex;
  gap: 5px;
}

.dot {
  width: 12px;
  height: 12px;
  border: 1px solid var(--dm-line-soft);
  border-radius: 50%;
}

.dot.filled {
  background: var(--dm-accent);
  border-color: var(--dm-accent);
}

.tea-card-copy {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  color: var(--dm-body);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.85;
}

.tea-card-copy p {
  margin: 0;
  overflow-wrap: break-word;
}

.tea-card-copy p + p {
  color: var(--dm-secondary);
  font-family: var(--font-en-serif);
  font-size: 14px;
  line-height: 1.64;
}

.brewing {
  overflow: visible;
  background: var(--paper);
}

.brew-hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  color: var(--white);
  background: var(--brown);
}

.brew-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brew-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(34, 29, 22, 0.1), rgba(34, 29, 22, 0.7));
}

.brew-heading {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 76svh;
  align-content: center;
  justify-items: end;
  text-align: right;
}

.brew-heading h2,
.brew-heading p {
  color: var(--white);
}

.brew-heading span {
  width: min(560px, 100%);
  background: linear-gradient(90deg, transparent, rgba(183, 154, 93, 0.9));
}

.brew-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  width: min(1080px, calc(100% - 64px));
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  padding-top: 110px;
  padding-bottom: 126px;
}

.brew-principles,
.brew-demo,
.brew-table {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--dm-line-faint);
  border-radius: 6px;
}

.brew-principles,
.brew-demo {
  padding: 34px 38px;
}

.brew-demo {
  align-self: start;
}

.brew-principles h3,
.brew-demo h3,
.brew-table h3 {
  margin: 0 0 18px;
  color: var(--dm-heading);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.brew-principles ol,
.brew-demo ol {
  margin: 0;
  padding-left: 1.4em;
  color: var(--dm-body);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.9;
  overflow-wrap: break-word;
}

.brew-principles strong {
  font-weight: 500;
}

.brew-demo strong {
  font-weight: 500;
}

.brew-tables {
  display: grid;
  gap: 28px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.brew-table {
  padding: 28px 30px 24px;
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  color: var(--dm-body);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 350;
  line-height: 1.5;
}

.table-scroll th,
.table-scroll td {
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--dm-line-faint);
}

.table-scroll th {
  color: var(--dm-heading);
  font-weight: 500;
}

.table-scroll tr:last-child td {
  border-bottom: 0;
}

.table-footnote {
  margin: 14px 0 0;
  color: var(--dm-secondary);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 350;
  line-height: 1.55;
  text-align: right;
}

.table-scroll,
.mobile-card-hint {
  display: none;
}

.mobile-card-carousel {
  display: flex;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  gap: 14px;
  padding: 2px 24px 14px 0;
  overflow-x: auto;
  overflow-y: visible;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mobile-card-carousel::-webkit-scrollbar {
  display: none;
}

.mobile-card-carousel > article {
  flex: 0 0 calc(100% - 4px);
  min-width: 0;
  box-sizing: border-box;
  padding: 24px 22px;
  visibility: visible;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--dm-accent-soft);
  border-radius: 6px;
  opacity: 1;
  scroll-snap-align: start;
  transform: none;
}

.tea-carousel-dots,
.brew-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.tea-carousel-dot,
.brew-carousel-dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--dm-line-soft);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.42);
}

.tea-carousel-dot.is-active,
.brew-carousel-dot.is-active {
  background: var(--dm-accent);
  border-color: var(--dm-accent);
}

.stores {
  padding: 132px 0;
  background: var(--paper-soft);
}

.stores-layout {
  display: grid;
  gap: 46px;
}

.stores-head {
  width: min(620px, 100%);
  margin: 0 auto;
  text-align: center;
}

.stores-head h2 {
  margin: 0;
  color: var(--dm-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.24;
}

.stores-head span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 13px 0 11px;
  background: linear-gradient(90deg, transparent, var(--dm-accent), transparent);
}

.stores-head p {
  margin: 0;
  color: var(--dm-secondary);
  font-family: var(--font-en-serif);
  font-size: 18px;
  line-height: 1.45;
  text-transform: uppercase;
}

.stores-visual {
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 46 / 21;
  height: 420px;
  max-height: 420px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stores-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.95);
}

.store-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.store-item {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--dm-line-faint);
  border-radius: 6px;
}

.store-item h3 {
  margin: 0 0 12px;
  color: var(--dm-heading);
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
}

.store-item p {
  margin: 0 0 9px;
  color: var(--dm-body);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 350;
  line-height: 1.65;
}

.store-item strong {
  color: var(--dm-heading);
}

.store-link {
  display: inline-block;
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 4px;
  color: var(--dm-accent);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid var(--dm-accent-soft);
}

.contact {
  padding: 118px 0 128px;
  background:
    linear-gradient(180deg, rgba(232, 223, 208, 0.5), rgba(251, 248, 242, 0.9)),
    var(--paper);
}

.contact-inner {
  display: grid;
  justify-items: center;
  width: min(880px, calc(100% - 64px));
  text-align: center;
}

.contact-heading {
  width: min(560px, 100%);
}

.contact-heading h2 {
  margin: 0;
  color: var(--dm-heading);
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.24;
}

.contact-heading span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 13px 0 11px;
  background: linear-gradient(90deg, transparent, var(--dm-accent), transparent);
}

.contact-heading p {
  margin: 0;
  color: var(--dm-secondary);
  font-family: var(--font-en-serif);
  font-size: 18px;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-intro {
  width: min(680px, 100%);
  margin: 34px 0 0;
  color: var(--dm-body);
  font-size: 18px;
  font-weight: 350;
  line-height: 2;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(840px, 100%);
  margin-top: 36px;
}

.contact-action {
  display: grid;
  min-height: 48px;
  align-items: center;
  justify-items: center;
  padding: 11px 16px;
  color: var(--dm-heading);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  background: rgba(255, 253, 248, 0.52);
  border: 1px solid var(--dm-accent-soft);
  border-radius: 4px;
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-action:hover {
  background: rgba(232, 223, 208, 0.58);
  border-color: rgba(160, 138, 85, 0.56);
}

.site-footer {
  padding: 0 24px 28px;
  color: rgba(111, 105, 95, 0.72);
  background: var(--paper);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
}

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

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

@media (max-width: 1120px) {
  .craft-grid,
  .brew-content,
  .stores-layout {
    grid-template-columns: 1fr;
  }

  .craft-image {
    height: 58svh;
    min-height: 460px;
  }

  .craft-copy,
  .legacy-copy {
    max-width: 720px;
  }

  .brew-tables,
  .store-list {
    grid-column: auto;
  }

  .brew-content,
  .brew-principles,
  .brew-demo,
  .brew-table,
  .brew-tables,
  .table-scroll {
    min-width: 0;
  }

  .stores-head {
    position: static;
  }
}

@media (max-width: 860px) {
  .header-inner,
  .page-frame {
    width: min(100% - 34px, 720px);
  }

  .header-inner {
    min-height: 60px;
  }

  .brand-link {
    gap: 6px;
    font-size: 19px;
  }

  .brand-link img {
    height: 21px;
  }

  .nav-toggle {
    gap: 5px;
    width: 34px;
    height: 34px;
  }

  .language-toggle {
    width: 34px;
    height: 34px;
  }

  .language-icon {
    width: 20px;
    height: 20px;
  }

  .nav-toggle span {
    width: 21px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(36deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-36deg);
  }

  .nav-list,
  .language-drawer {
    top: 62px;
    width: min(190px, calc(100vw - 20px));
    max-width: none;
    font-size: 15px;
    overflow: visible;
    white-space: normal;
  }

  .nav-list a,
  .language-option {
    min-height: 46px;
    padding: 9px 18px;
  }

  .hero-content {
    width: min(100% - 56px, 720px);
    min-height: 92svh;
    padding: 112px 0 51px;
  }

  .hero-lockup h1 {
    font-size: 52px;
  }

  .hero-logo {
    width: min(220px, 100%);
  }

  .hero-lockup p {
    font-size: 22px;
  }

  .hero-lockup span::before {
    width: min(300px, 100%);
  }

  .hero-lockup span::before {
    width: min(280px, 100%);
  }

  .section-title h2,
  .collection-copy h2,
  .brew-heading h2,
  .stores-head h2,
  .catalog-title h2,
  .contact-heading h2 {
    font-size: 34px;
  }

  .story-section,
  .craft-section,
  .legacy-section,
  .teas,
  .stores,
  .contact {
    padding-top: 84px;
    padding-bottom: 92px;
  }

  .story-section {
    display: block;
  }

  .story-map {
    width: 100%;
    height: 46svh;
    min-height: 320px;
    box-shadow: none;
  }

  .story-anchor {
    top: 84px;
  }

  .story-copy {
    width: min(100% - 34px, 720px);
    margin: 0 auto;
    padding: 42px 0 0;
    background: transparent;
    box-shadow: none;
  }

  .section-title,
  .section-title.left {
    margin-right: 0;
    margin-bottom: 34px;
    margin-left: 0;
    text-align: left;
  }

  .section-title span {
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .body-copy {
    font-size: 17px;
    line-height: 1.95;
  }

  .catalog-title {
    text-align: left;
  }

  .catalog-title h2 {
    margin-left: 0;
  }

  .tea-card-carousel {
    width: 100%;
    gap: 14px;
    padding-right: 24px;
  }

  .tea-card {
    flex: 0 0 min(calc(100% - 24px), 360px);
    max-width: min(calc(100% - 24px), 360px);
    padding: 28px 24px 26px;
  }

  .tea-card-copy {
    font-size: 16px;
  }

  .brew-content {
    grid-template-columns: 1fr;
    width: min(100% - 34px, 720px);
    max-width: 100%;
    padding-top: 70px;
    padding-bottom: 88px;
    gap: 24px;
  }

  .brew-principles,
  .brew-demo,
  .brew-table {
    padding: 26px 22px;
    overflow-wrap: break-word;
  }

  .brew-principles,
  .brew-demo,
  .brew-tables {
    display: block;
  }

  .brew-tables {
    display: grid;
  }

  .store-list {
    grid-template-columns: 1fr;
  }

  .stores-layout {
    gap: 36px;
  }

  .stores-visual {
    width: 100%;
    height: 360px;
  }

  .contact-inner {
    width: min(100% - 34px, 720px);
  }

  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(520px, 100%);
  }
}

@media (min-width: 768px) {
  .tea-card-carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: min(100%, 1080px);
    padding-right: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .tea-card-carousel::after {
    display: none;
  }

  .tea-card {
    max-width: none;
    scroll-snap-align: none;
  }

  .tea-card-heading {
    padding-right: 0;
  }

  .tea-card-count,
  .tea-carousel-dots {
    display: none;
  }

  .table-scroll {
    display: block;
  }

  .mobile-card-carousel,
  .brew-carousel-dots {
    display: none;
  }
}

@media (min-width: 1120px) {
  .tea-card-carousel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  html[lang="en"] .tea-card-carousel,
  html[lang="ko"] .tea-card-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 960px);
  }
}

@media (max-width: 767px) {
  .tea-card {
    flex-basis: calc(100% - 4px);
    max-width: none;
  }

  .tea-card,
  .brew-principles,
  .brew-demo,
  .brew-table,
  .mobile-card-carousel > article,
  .store-item {
    border-radius: 4px;
  }

  .brew-table {
    padding-right: 12px;
    padding-left: 12px;
    overflow: visible;
  }

  .brew-demo h3 {
    text-indent: -0.18em;
  }

  .table-scroll {
    display: none;
  }

  .mobile-card-hint {
    display: block;
    margin: -4px 0 14px;
    color: var(--quiet);
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.5;
  }

  .mobile-card-carousel {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 14px;
    padding: 2px 24px 14px 0;
  }

  .mobile-card-carousel > article {
    flex-basis: calc(100% - 4px);
    max-width: none;
    padding: 24px 22px;
  }

  .brew-card-top {
    display: flex;
    gap: 16px;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--dm-line-faint);
  }

  .brew-card-top h4 {
    margin: 0;
    color: var(--dm-heading);
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: break-word;
  }

  .brew-card-top span {
    flex: 0 0 auto;
    color: var(--dm-secondary);
    font-family: var(--font-en-serif);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
  }

  .brew-mobile-card dl {
    display: grid;
    gap: 0;
    margin: 14px 0 0;
  }

  .brew-card-row {
    display: grid;
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--dm-line-faint);
  }

  .brew-card-row:last-child {
    border-bottom: 0;
  }

  .brew-card-row dt,
  .brew-card-row dd {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .brew-card-row dt {
    color: var(--dm-secondary);
    font-weight: 500;
  }

  .brew-card-row dd {
    color: var(--dm-body);
    font-weight: 350;
    text-align: right;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-action {
    min-height: 50px;
  }
}

@media (min-width: 768px) {
  .craft-grid,
  .story-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .story-section {
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    padding: 124px max(34px, calc((100% - 1360px) / 2));
  }

  .story-map {
    width: 100%;
    height: 64svh;
    min-height: 460px;
    max-height: 720px;
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: none;
  }

  .craft-image {
    overflow: hidden;
    border-radius: 6px;
  }

  .story-copy {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .brew-content {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(1080px, calc(100% - 64px));
    padding-top: 110px;
    padding-bottom: 126px;
  }

  .brew-table .table-scroll {
    display: block;
  }

  .brew-table .mobile-card-carousel,
  .brew-table .brew-carousel-dots {
    display: none;
  }

  .stores-visual {
    width: min(100%, 800px);
    aspect-ratio: 5 / 3;
    height: auto;
    max-height: none;
    overflow: hidden;
    border-radius: 6px;
  }

  .stores-visual img {
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 767px) {
  .story-section {
    padding-right: 0;
    padding-left: 0;
  }

  .story-map {
    width: min(100% - 34px, 720px);
    margin-right: auto;
    margin-left: auto;
  }

  .story-map,
  .craft-image,
  .legacy-opener {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
    border-radius: 4px;
  }

  .story-map img,
  .craft-image img,
  .legacy-opener img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .story-copy {
    width: min(100% - 34px, 720px);
  }

  .story-copy .body-copy,
  .craft-copy .body-copy,
  .legacy-copy .body-copy {
    width: calc(100% - 24px);
    margin-right: auto;
    margin-left: auto;
  }

  .award-record li {
    display: grid;
    grid-template-columns: 2.6em minmax(0, 1fr);
    column-gap: 0.35em;
    align-items: start;
  }

  .award-year::after {
    content: "";
  }

  .award-title {
    min-width: 0;
  }

  .story-copy .section-title,
  .craft-copy .section-title,
  .legacy-copy .section-title,
  .catalog-title h2,
  .catalog-title p,
  .brew-heading,
  .stores-head {
    transform: translateX(12px);
  }

  .brew-heading {
    justify-items: end;
    text-align: right;
  }

  .collection,
  .collection-copy {
    min-height: 76svh;
  }

  .brew-heading span {
    background: linear-gradient(90deg, transparent, rgba(183, 154, 93, 0.9));
  }

  .catalog-title {
    width: min(620px, 100%);
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .catalog-title h2 {
    width: 100%;
    margin: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .catalog-title h2::after {
    display: block;
    width: 100%;
    height: 1px;
    margin: 13px 0 11px;
    content: "";
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .catalog-title p {
    margin: 0;
  }

  .catalog-title div {
    width: calc(100% - 24px);
    margin-right: auto;
    margin-left: auto;
  }

  .contact-intro {
    width: min(100% - 24px, 656px);
    margin-right: auto;
    margin-left: auto;
  }

  .stores-head {
    width: min(620px, 100%);
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .stores-head.reveal {
    transform: translateX(12px) translateY(18px);
  }

  .stores-head.reveal.is-visible {
    transform: translateX(12px) translateY(0);
  }

  .stores-head span {
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  .stores-visual {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
    border-radius: 4px;
  }

  .stores-visual img {
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 560px) {
  .brand-link {
    font-size: 18px;
  }

  .brand-link img {
    height: 20px;
  }

  .nav-list {
    width: min(180px, calc(100vw - 20px));
    font-size: 15.5px;
  }

  .hero-lockup h1 {
    font-size: 42px;
  }

  .hero-logo {
    width: min(210px, 100%);
  }

  .hero-lockup p {
    font-size: 20px;
  }

  .hero-lockup span,
  .section-title p,
  .collection-copy p,
  .brew-heading p,
  .stores-head p,
  .contact-heading p {
    font-size: 14px;
  }

  .section-title h2,
  .collection-copy h2,
  .brew-heading h2,
  .stores-head h2,
  .catalog-title h2,
  .contact-heading h2 {
    font-size: 30px;
  }

  .craft-image {
    min-height: 360px;
  }

  .collection,
  .collection-copy,
  .brew-heading,
  .brew-hero {
    min-height: 62svh;
  }

  .contact-intro {
    font-size: 16px;
    line-height: 1.9;
  }

}

/* Mobile only: nudge brewing table headings, not cards */
@media (max-width: 767px) {
  .brew-table h3 {
    padding-left: 8px;
  }
}

/* Mobile only: visually align the quoted brewing demo heading */
@media (max-width: 767px) {
  .brew-demo h3 {
    text-indent: -0.18em;
  }
}

/* Mobile only: visually align the quoted brewing demo heading */
@media (max-width: 767px) {
  .brew-demo h3 {
    text-indent: -0.22em;
  }
}

/* Mobile only: visually align the quoted brewing demo heading */
@media (max-width: 767px) {
  .brew-demo h3 {
    text-indent: -0.25em;
  }
}

/* Mobile only: visually align the quoted brewing demo heading */
@media (max-width: 767px) {
  .brew-demo h3 {
    text-indent: -0.30em;
  }
}

/* Mobile only: visually align the quoted brewing demo heading */
@media (max-width: 767px) {
  .brew-demo h3 {
    text-indent: -0.34em;
  }
}

/* Mobile only: visually align the quoted brewing demo heading */
@media (max-width: 767px) {
  .brew-demo h3 {
    text-indent: -0.38em;
  }
}

/* Mobile only: visually align the quoted brewing demo heading */
@media (max-width: 767px) {
  .brew-demo h3 {
    text-indent: -0.44em;
  }
}

/* Mobile only: visually align the quoted brewing demo heading */
@media (max-width: 767px) {
  .brew-demo h3 {
    text-indent: -0.26em;
  }
}

/* Mobile only: visually align the quoted brewing demo heading */
@media (max-width: 767px) {
  .brew-demo h3 {
    text-indent: -0.50em;
  }
}

/* Mobile only: visually align the quoted brewing demo heading */
@media (max-width: 767px) {
  .brew-demo h3 {
    text-indent: -0.30em;
  }
}
