:root {
  --ink: #20241d;
  --paper: #f1eee4;
  --cream: #faf8f1;
  --moss: #58624b;
  --rust: #a55436;
  --line: #c9c5b9;
  --quiet: #6d6d63;
  --serif: Georgia, "Times New Roman", "Noto Serif", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgb(32 36 29 / 12%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

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

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--rust), transparent 25%);
  outline-offset: 4px;
}

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

.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: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

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

#site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(32 36 29 / 14%);
  background: rgb(250 248 241 / 92%);
  backdrop-filter: blur(12px);
}

.site-bar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  transition: min-height 220ms ease;
}

#site-header.is-scrolled {
  border-bottom-color: rgb(32 36 29 / 22%);
  box-shadow: 0 8px 30px rgb(32 36 29 / 7%);
}

#site-header.is-scrolled .site-bar {
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 32px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
  transition: width 220ms ease, height 220ms ease;
}

#site-header.is-scrolled .brand-mark {
  width: 27px;
  height: 40px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.brand small {
  margin-top: -3px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--rust);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.main-nav a[aria-current="page"] {
  color: var(--rust);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(50px, 7vw, 102px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 2.3vw, 36px);
  letter-spacing: -0.025em;
}

.eyebrow,
.card-meta,
.reading-time {
  color: var(--rust);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
}

.lede {
  max-width: 650px;
  color: #4f5149;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.48;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 21px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button-dark {
  color: var(--cream);
  background: var(--ink);
}

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

.button-light {
  background: transparent;
}

.button-light:hover {
  color: var(--cream);
  background: var(--ink);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arrow-link span {
  transition: transform 180ms ease;
}

.arrow-link:hover span {
  transform: translateX(4px);
}

.home-hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding-block: clamp(72px, 9vw, 130px);
}

.hero-copy h1 {
  max-width: 590px;
}

.hero-image {
  position: relative;
  margin: 0;
}

.hero-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -24px 24px 24px -24px;
  border: 1px solid var(--line);
}

.hero-image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.hero-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--ink);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manifesto {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.manifesto p {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.3;
}

.documentary-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.78fr 1fr;
  gap: 18px;
  align-items: end;
  padding-block: 38px 72px;
}

.documentary-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  padding-top: clamp(90px, 10vw, 145px);
}

.documentary-intro h2 {
  max-width: 770px;
  font-size: clamp(40px, 5vw, 66px);
}

.documentary-intro div > p {
  max-width: 720px;
  color: var(--quiet);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.7;
}

.documentary-frame {
  margin: 0;
}

.documentary-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.documentary-frame:nth-child(2) img {
  object-position: center 42%;
}

.documentary-frame figcaption,
.story-gallery figcaption {
  margin-top: 10px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seal {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  color: var(--rust);
  font-family: var(--serif);
  font-size: 25px;
  transform: rotate(-4deg);
}

.section {
  padding-block: clamp(92px, 11vw, 160px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 480px;
  color: var(--quiet);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px 34px;
}

.category-card {
  min-width: 0;
}

.card-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ded9cc;
}

.card-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.category-number {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgb(32 36 29 / 88%);
  font-family: var(--serif);
}

.category-card-copy {
  padding: 25px 2px 0;
}

.category-card-copy > p:not(.card-meta) {
  max-width: 590px;
  color: var(--quiet);
}

.card-meta {
  margin-bottom: 13px;
}

.feature-band {
  overflow: hidden;
  color: var(--cream);
  background: var(--moss);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.feature-image {
  margin-left: calc((100vw - min(1240px, calc(100vw - 64px))) / -2);
}

.feature-image img {
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  padding: 100px clamp(40px, 8vw, 130px);
}

.feature-copy .eyebrow {
  color: #e2b99e;
}

.feature-copy p:not(.eyebrow) {
  margin-bottom: 36px;
  color: #e8e8df;
}

.feature-copy .button-light {
  border-color: #dedfd6;
}

.feature-copy .button-light:hover {
  color: var(--ink);
  background: var(--cream);
}

.story-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: center;
  padding-block: clamp(100px, 12vw, 180px);
}

.story-preview-copy p:not(.eyebrow) {
  max-width: 490px;
  color: var(--quiet);
}

.story-preview-image {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.writings-preview {
  background: var(--paper);
}

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

.article-thumb {
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  background: #ded9cc;
}

.article-thumb img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 400ms ease;
}

.article-thumb:hover img {
  transform: scale(1.025);
}

.article-card h3 {
  font-size: clamp(25px, 2vw, 32px);
}

.article-card > div > p:not(.card-meta) {
  color: var(--quiet);
}

.all-writing-link {
  margin-top: 54px;
}

.tea-page-intro {
  padding-bottom: 20px;
}

.tea-family-section {
  padding-top: 80px;
}

.tea-method {
  padding-block: clamp(90px, 11vw, 150px);
  color: var(--cream);
  background: var(--moss);
}

.tea-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(60px, 10vw, 150px);
}

.tea-method .eyebrow {
  color: #e2b99e;
}

.tea-method-copy {
  color: #e8e8df;
  font-family: var(--serif);
  font-size: 20px;
}

.tea-method-copy .button {
  margin-top: 20px;
  border-color: #dedfd6;
  font-family: var(--sans);
}

.detail-hero,
.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding-block: clamp(80px, 10vw, 145px);
}

.detail-hero h1,
.editorial-hero h1 {
  font-size: clamp(52px, 7.2vw, 100px);
}

.detail-hero-image,
.editorial-hero > img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.quiet-note {
  max-width: 580px;
  margin: 24px 0 32px;
  padding-left: 16px;
  border-left: 2px solid var(--rust);
  color: var(--quiet);
  font-size: 13px;
}

.tea-list {
  border-top: 1px solid var(--line);
}

.tea-listing {
  display: grid;
  grid-template-columns: 50px 230px minmax(230px, 1.1fr) minmax(250px, 0.9fr) auto;
  gap: 28px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.tea-listing-media {
  width: 230px;
  height: 190px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 6px;
  background: #ded9cc;
}

.tea-listing-media.is-single {
  grid-template-columns: 1fr;
}

.tea-listing-media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.tea-index {
  color: var(--rust);
  font-family: var(--serif);
  font-size: 20px;
}

.tea-listing h3 {
  font-size: 32px;
}

.tea-listing-main > p:last-child,
.tea-facts dd {
  color: var(--quiet);
}

.product-original {
  margin: -3px 0 14px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.tea-facts {
  margin: 0;
}

.tea-facts > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dotted var(--line);
}

.tea-facts dt {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tea-facts dd {
  margin: 0;
  font-size: 13px;
}

.collection-nav {
  padding-block: 30px 100px;
}

.collection-nav > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.collection-nav a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 21px;
}

.three-column-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
}

.numbered-copy > span,
.story-section > span {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: 20px;
}

.numbered-copy h2 {
  font-size: 37px;
}

.numbered-copy p {
  color: var(--quiet);
}

.studio-note {
  padding: 85px 0;
  color: var(--cream);
  background: var(--rust);
}

.studio-note .shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.studio-note p {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  text-align: center;
}

.studio-note .seal {
  color: var(--cream);
}

.pottery-gallery {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  padding-block: clamp(80px, 10vw, 130px);
}

.pottery-gallery figure {
  margin: 0;
}

.pottery-gallery img {
  height: 100%;
  min-height: 560px;
  max-height: 780px;
  object-fit: cover;
}

.pottery-gallery figure:first-child img {
  object-position: center 58%;
}

.editorial-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: end;
}

.editorial-hero > img {
  aspect-ratio: 5 / 6;
}

.story-article {
  max-width: 980px;
  padding-block: 30px 130px;
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 130px;
}

.story-gallery figure {
  margin: 0;
}

.story-gallery figure:last-child {
  grid-column: 1 / -1;
}

.story-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.story-gallery figure:last-child img {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 8;
}

.story-section {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 35px;
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.story-section > span {
  margin: 5px 0 0;
}

.story-section h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.story-section p,
.article-body p {
  color: #484b43;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.75;
}

.page-intro {
  max-width: 1050px;
  padding-top: clamp(90px, 11vw, 150px);
}

.page-intro h1 {
  max-width: 950px;
}

.article-index {
  padding-top: 75px;
}

.article-hero {
  max-width: 980px;
  padding-top: clamp(85px, 11vw, 150px);
  text-align: center;
}

.article-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(50px, 7vw, 90px);
}

.article-hero .lede {
  margin-inline: auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reading-time {
  margin-top: 28px;
  color: var(--quiet);
}

.article-original-title {
  margin: -8px 0 26px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: 0.08em;
}

.article-image {
  max-width: 1120px;
  margin-top: 68px;
}

.article-image img {
  max-height: 720px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-body {
  max-width: 780px;
  padding-block: 80px 130px;
}

.article-body section {
  margin-bottom: 68px;
}

.article-body h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.translation-note {
  margin-bottom: 65px;
  padding: 17px 20px;
  border-left: 2px solid var(--rust);
  background: var(--paper);
  color: var(--quiet) !important;
  font-family: var(--sans) !important;
  font-size: 13px !important;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 130px;
}

.article-gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 620px;
  object-fit: cover;
}

.article-inline-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(1040px, calc(100vw - 64px));
  margin: 42px 0 10px 50%;
  transform: translateX(-50%);
}

.article-inline-gallery figure {
  margin: 0;
}

.article-inline-gallery img {
  height: 100%;
  min-height: 280px;
  max-height: 560px;
  object-fit: cover;
}

.article-inline-gallery figcaption {
  margin-top: 8px;
  color: var(--quiet);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.contact-section {
  padding-block: clamp(90px, 11vw, 150px);
  background: #e6e1d4;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: clamp(55px, 9vw, 140px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--quiet);
}

.contact-details {
  margin-top: 42px;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
}

.contact-details a {
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.text-button {
  margin-left: 6px;
  padding: 1px 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--rust);
  background: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.copy-status,
.form-status {
  min-height: 22px;
  color: var(--moss) !important;
  font-size: 12px;
}

.contact-form {
  padding: clamp(28px, 4vw, 50px);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form .optional {
  float: right;
  color: var(--quiet);
  font-size: 9px;
  font-weight: 600;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 450;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea {
  min-height: 120px;
  padding: 12px;
  border: 1px solid var(--line);
  resize: vertical;
}

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

.form-note {
  margin: 15px 0 0;
  color: var(--quiet);
  font-size: 11px;
}

#site-footer {
  color: #d9d9d0;
  background: var(--ink);
}

.footer-inner {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-content: center;
}

.footer-inner > div:first-child strong,
.footer-inner > div:first-child span {
  display: block;
}

.footer-inner strong {
  margin-bottom: 8px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.footer-inner span,
.footer-inner small {
  color: #a9ab9f;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 12px;
}

.footer-inner small {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

/* Content is visible by default so the static site never depends on JavaScript to appear. */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .home-hero,
  .detail-hero,
  .editorial-hero,
  .story-preview,
  .contact-grid,
  .tea-method-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-image,
  .detail-hero-image,
  .editorial-hero > img {
    width: min(100%, 720px);
    justify-self: end;
  }

  .hero-image img,
  .detail-hero-image,
  .editorial-hero > img {
    aspect-ratio: 16 / 11;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-image {
    margin: 0;
  }

  .feature-image img {
    min-height: 0;
    max-height: 630px;
    aspect-ratio: 4 / 3;
  }

  .feature-copy {
    padding-inline: 0;
  }

  .tea-listing {
    grid-template-columns: 45px 190px 1fr;
  }

  .tea-listing-main,
  .tea-facts {
    grid-column: 3;
  }

  .tea-listing .button {
    grid-column: 3;
    justify-self: start;
  }

  .tea-listing-media {
    width: 190px;
    height: 170px;
  }

  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 36px, 620px);
  }

  .site-bar {
    min-height: 76px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 8px;
  }

  .brand-mark {
    width: 25px;
    height: 38px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 18px 35px rgb(32 36 29 / 10%);
  }

  #site-header.is-scrolled .main-nav {
    top: 72px;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  h1 {
    font-size: clamp(47px, 15vw, 72px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .home-hero,
  .detail-hero,
  .editorial-hero {
    gap: 48px;
    padding-block: 68px 85px;
  }

  .hero-image::before {
    inset: -12px 12px 12px -12px;
  }

  .detail-hero-image,
  .editorial-hero > img {
    aspect-ratio: 4 / 5;
  }

  .hero-image img {
    aspect-ratio: 4 / 3;
  }

  .manifesto {
    min-height: 190px;
    flex-direction: column;
    gap: 20px;
    padding-block: 35px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 45px;
  }

  .documentary-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-grid,
  .article-grid,
  .three-column-copy {
    grid-template-columns: 1fr;
  }

  .documentary-strip {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 38px 70px;
  }

  .documentary-frame img,
  .documentary-frame:nth-child(2) img {
    aspect-ratio: 4 / 3;
  }

  .category-grid {
    gap: 56px;
  }

  .feature-copy {
    padding-block: 70px;
  }

  .story-preview {
    padding-block: 90px;
  }

  .story-preview-image {
    grid-row: 1;
  }

  .tea-listing {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }

  .tea-listing-main,
  .tea-facts,
  .tea-listing .button {
    grid-column: 2;
  }

  .tea-listing-media {
    grid-column: 2;
    width: min(100%, 440px);
    height: 240px;
  }

  .tea-listing .button {
    justify-self: start;
  }

  .tea-facts > div {
    grid-template-columns: 78px 1fr;
  }

  .collection-nav > div {
    grid-template-columns: 1fr;
  }

  .numbered-copy {
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
  }

  .numbered-copy > span {
    margin-bottom: 25px;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 48px 0;
  }

  .story-section > span {
    margin-bottom: 0;
  }

  .story-section p,
  .article-body p {
    font-size: 18px;
  }

  .article-gallery {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
  }

  .pottery-gallery,
  .article-inline-gallery {
    grid-template-columns: 1fr;
  }

  .pottery-gallery img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .article-inline-gallery {
    width: min(100vw - 36px, 620px);
  }

  .article-inline-gallery img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .story-gallery {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
  }

  .story-gallery figure:last-child {
    grid-column: auto;
  }

  .story-gallery img {
    aspect-ratio: 3 / 4;
  }

  .story-gallery figure:last-child img {
    aspect-ratio: 4 / 3;
  }

  .article-gallery img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-block: 55px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-inner small {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* --- 2026-09 bilingual/editorial revision --- */
html, body { max-width: 100%; overflow-x: hidden; overflow-x: clip; }
body, main, section, article, nav, header, footer, .shell, .site-bar, .category-grid, .tea-listing, .contact-grid { min-width: 0; }
img, video, iframe { max-width: 100%; }
p, h1, h2, h3, dd, a, label { overflow-wrap: anywhere; }

/* Header: keep Chinese/logo unchanged; English brand line uses the established rust accent. */
.brand small { color: var(--rust); }
.header-actions { display:flex; align-items:center; gap:18px; }
.language-switch { display:flex; align-items:center; gap:7px; white-space:nowrap; font-size:11px; font-weight:750; letter-spacing:.08em; }
.language-switch a { color:var(--quiet); padding:6px 2px; }
.language-switch a[aria-current="true"] { color:var(--rust); }
.language-switch span { color:var(--line); }
.nav-contact-wrap { position:relative; }
.nav-contact-wrap > a { display:block; }
.nav-submenu { position:absolute; right:0; top:calc(100% - 1px); min-width:120px; padding:8px 12px; border:1px solid var(--line); background:var(--cream); box-shadow:0 14px 30px rgb(32 36 29 / 10%); opacity:0; visibility:hidden; transform:translateY(6px); transition:opacity .16s ease, transform .16s ease, visibility .16s; }
.nav-contact-wrap:hover .nav-submenu, .nav-contact-wrap:focus-within .nav-submenu { opacity:1; visibility:visible; transform:none; }
.nav-submenu a { display:block; padding:7px 2px; }

/* Beige separation immediately after the homepage introduction. */
.manifesto-band { background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.manifesto-band .manifesto { border:0; }

/* Pottery and Story: beige only behind the numbered editorial sections, not the opening hero. */
body[data-page="pottery"] #page-content > .section {
  background:var(--paper);
  box-shadow:0 0 0 100vmax var(--paper);
  clip-path:inset(0 -100vmax);
}
body[data-page="story"] .story-article {
  background:var(--paper);
  box-shadow:0 0 0 100vmax var(--paper);
  clip-path:inset(0 -100vmax);
}

/* Tea family selector: full border, no visually chopped side edges. */
.collection-nav { overflow:visible; padding-bottom:clamp(70px,9vw,120px); }
.collection-nav > div { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border:1px solid var(--line); overflow:hidden; }
.collection-nav > div > a { min-width:0; border-right:1px solid var(--line); }
.collection-nav > div > a:last-child { border-right:0; }

/* Product descriptions now carry a second, source-grounded paragraph. */
.tea-listing-main > p + p { margin-top:14px; }
.source-intro { color:var(--rust); font-size:12px; font-weight:700; letter-spacing:.05em; }
.source-product-copy { max-height:560px; overflow:auto; padding-right:12px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.source-product-copy p { margin:14px 0; }

/* Dedicated FAQ/contact page. The two sections share the same editorial grid. */
.contact-page-intro,
.faq-section {
  display:grid;
  grid-template-columns:minmax(190px,.58fr) minmax(0,1.42fr);
  gap:clamp(36px,7vw,110px);
  align-items:start;
}
.contact-page-intro > .eyebrow { margin-top:12px; }
.contact-page-intro > div,
.faq-section > div { min-width:0; }
.faq-section { padding-block:clamp(90px,10vw,140px); }
.faq-section .section-heading { display:block; margin:0; }
.faq-list { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item summary { cursor:pointer; list-style:none; padding:28px 54px 28px 0; font-family:var(--serif); font-size:clamp(21px,2.2vw,30px); line-height:1.25; position:relative; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; position:absolute; right:8px; top:25px; color:var(--rust); font-family:var(--sans); }
.faq-item[open] summary::after { content:"–"; }
.faq-item p { max-width:760px; padding:0 40px 30px 0; color:var(--quiet); }

/* Newsletter / Kit: one full-width signup immediately above every footer. */
.newsletter-section { width:100%; background:var(--paper); border-top:1px solid var(--line); }
.newsletter-inner { display:grid; grid-template-columns:minmax(0,.85fr) minmax(320px,1.15fr); gap:clamp(34px,7vw,100px); align-items:center; padding-block:clamp(58px,7vw,92px); }
.newsletter-home .newsletter-inner { padding-block:clamp(76px,9vw,122px); }
.newsletter-inner h2 { margin-bottom:12px; font-size:clamp(34px,4vw,56px); }
.newsletter-inner > div:first-child > p:last-child { max-width:520px; color:var(--quiet); }
.kit-embed { min-height:72px; min-width:0; }
.newsletter-section .formkit-form { max-width:680px !important; margin:0 !important; background:transparent !important; border:0 !important; box-shadow:none !important; }
.newsletter-section .formkit-fields { display:flex !important; gap:10px !important; align-items:stretch !important; }
.newsletter-section .formkit-field { flex:1 1 auto !important; margin:0 !important; }
.newsletter-section .formkit-input { min-height:50px !important; border:1px solid var(--ink) !important; border-radius:0 !important; background:var(--cream) !important; color:var(--ink) !important; }
.newsletter-section .formkit-submit { min-height:50px !important; border-radius:0 !important; background:var(--ink) !important; color:var(--cream) !important; }
.newsletter-section .formkit-alert { color:var(--rust) !important; }

/* Xingxing and Us: keep the journal preview crop high enough to include both faces. */
.article-thumb-xingxing img { object-position:center 18%; }

/* Chinese typography keeps the same editorial system without forced all-caps spacing. */
body[data-lang="zh"] .eyebrow,
body[data-lang="zh"] .card-meta,
body[data-lang="zh"] .reading-time,
body[data-lang="zh"] .main-nav,
body[data-lang="zh"] .button,
body[data-lang="zh"] .arrow-link { letter-spacing:.08em; text-transform:none; }
body[data-lang="zh"] .brand strong { letter-spacing:.14em; }

@media (max-width: 980px) {
  .site-bar { gap:18px; }
  .header-actions { margin-left:auto; }
  .language-switch { font-size:10px; gap:5px; }
  .nav-toggle { display:block; }
  .main-nav {
    position:fixed;
    top:92px;
    left:0;
    right:0;
    display:none;
    padding:18px;
    border-bottom:1px solid var(--line);
    background:var(--cream);
    box-shadow:0 18px 35px rgb(32 36 29 / 10%);
  }
  #site-header.is-scrolled .main-nav { top:72px; }
  .main-nav.is-open { display:grid; }
  .main-nav a { padding:13px 12px; border-bottom:1px solid var(--line); }
  .main-nav .nav-contact-wrap { width:100%; }
  .nav-contact-wrap > a { width:100%; }
  .nav-submenu { position:static; min-width:0; padding:0 0 0 18px; border:0; box-shadow:none; background:transparent; opacity:1; visibility:visible; transform:none; }
  .nav-submenu a { font-size:11px; color:var(--quiet); }
  .newsletter-inner { grid-template-columns:1fr; }
  .contact-page-intro,
  .faq-section { grid-template-columns:1fr; gap:22px; }
  .contact-page-intro > .eyebrow { margin-top:0; margin-bottom:0; }
  .collection-nav > div { grid-template-columns:1fr; }
  .collection-nav > div > a { border-right:0; border-bottom:1px solid var(--line); }
  .collection-nav > div > a:last-child { border-bottom:0; }
  .article-inline-gallery { max-width:100%; transform:none !important; margin-left:auto !important; margin-right:auto !important; }
}

@media (max-width: 760px) {
  .main-nav { top:76px; }
  #site-header.is-scrolled .main-nav { top:72px; }
}

@media (max-width: 640px) {
  .shell { width:min(100% - 34px, 1240px); }
  .site-bar { min-height:72px; }
  .main-nav { top:72px; }
  .brand { gap:9px; min-width:0; }
  .brand-mark { width:25px; height:38px; }
  .brand strong { font-size:17px; white-space:nowrap; }
  .brand small { max-width:150px; font-size:8px; letter-spacing:.11em; white-space:nowrap; }
  .header-actions { gap:10px; }
  .language-switch { font-size:10px; }
  .nav-toggle { width:40px; height:40px; padding:9px; }
  .home-hero, .detail-hero, .editorial-hero, .feature-grid, .story-preview, .documentary-intro, .tea-method-grid, .contact-grid { min-width:0; }
  .home-hero { grid-template-columns:1fr; }
  .hero-image { max-width:100%; }
  .hero-image::before { inset:-10px 10px 10px -10px; }
  .newsletter-section .formkit-fields { flex-direction:column !important; }
  .source-product-copy { max-height:440px; }
  .faq-item summary { padding-block:22px; padding-right:42px; }
  .faq-item summary::after { top:19px; right:4px; }
  .faq-item p { padding-right:0; }
}

@media (min-width: 761px) { .main-nav { order:2; } .header-actions { order:3; } }
