:root {
  --paper: #f5f1ea;
  --paper-deep: #ebe5da;
  --mist: #a8aaa3;
  --ink: #1e1d1b;
  --ink-soft: rgba(30, 29, 27, 0.72);
  --tea: #6b4e3d;
  --blue: #377ea0;
  --seal: #a63a32;
  --line: rgba(30, 29, 27, 0.16);
  --white: #fffaf2;
  --serif: "Cormorant Garamond", "EB Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --cjk: "Source Han Serif SC", "Songti SC", "Noto Serif CJK SC", serif;
  --space: clamp(24px, 4vw, 64px);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  background-image:
    linear-gradient(rgba(245, 241, 234, 0.9), rgba(245, 241, 234, 0.9)),
    url("assets/paper-texture.png");
  background-size: auto, 620px auto;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(166, 58, 50, 0.18);
}

.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;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: rgba(245, 241, 234, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 241, 234, 0.94);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-seal {
  width: 34px;
  height: 42px;
  object-fit: contain;
}

.brand-mark strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.brand-mark small {
  display: block;
  margin-top: 2px;
  font-family: var(--cjk);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

.site-nav a,
.text-link {
  position: relative;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 25;
  display: block;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .manifesto {
    max-width: none;
    grid-template-columns: minmax(180px, 22vw) minmax(0, 1fr);
  }

  .manifesto-text h2,
  .manifesto-text > p {
    max-width: none;
  }

  .manifesto-text h2 {
    white-space: nowrap;
  }

.education-intro h1,
.education-intro h2 {
  max-width: none;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  white-space: nowrap;
}

  .home-teas .section-heading {
    max-width: none;
  }

  .home-teas .section-heading h2 {
    font-size: clamp(2.5rem, 4.2vw, 4.8rem);
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .image-ribbon div {
    max-width: calc(100% - (var(--space) * 2));
  }

  .image-ribbon p,
  .image-ribbon span {
    white-space: nowrap;
  }
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 160ms ease, top 160ms ease;
}

.nav-toggle::before {
  top: 16px;
}

.nav-toggle::after {
  top: 24px;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 20px;
  transform: rotate(42deg);
}

.nav-toggle[aria-expanded="true"]::after {
  top: 20px;
  transform: rotate(-42deg);
}

.nav-toggle span:not(.sr-only) {
  display: none;
}

.section-bleed {
  width: 100%;
}

.page-main {
  padding-top: 79px;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 29, 27, 0.08);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(120px, 14vw, 210px) clamp(24px, 6vw, 86px) clamp(54px, 8vw, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--seal);
  font-family: var(--cjk);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 5.9vw, 6.6rem);
  overflow-wrap: normal;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
}

.hero-copy > p:not(.eyebrow),
.manifesto-text > p,
.education-intro p:last-child,
.wholesale-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.text-link.muted {
  color: var(--tea);
}

.manifesto,
.teas-section,
.wholesale-section,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) var(--space);
}

.manifesto {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(34px, 7vw, 110px);
}

.section-label {
  display: inline-grid;
  grid-template-columns: 2.4ch auto;
  align-items: center;
  column-gap: 14px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.section-label span {
  color: var(--seal);
  font: inherit;
  font-variant-numeric: tabular-nums;
  letter-spacing: inherit;
  line-height: 1;
}

.section-label p {
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
  line-height: 1;
}

.han {
  font-family: var(--cjk);
  letter-spacing: 0.16em;
}

.manifesto-text .han {
  margin-bottom: 24px;
  color: var(--tea);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.scholar-mark {
  width: clamp(92px, 10vw, 140px);
  height: auto;
  margin: 0 0 28px auto;
  opacity: 0.76;
}

.manifesto-text h2 {
  max-width: 830px;
  margin-bottom: 28px;
}

.image-ribbon {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--ink);
}

.image-ribbon img {
  width: 100%;
  height: 58vh;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.64) brightness(0.86);
}

.image-ribbon div {
  position: absolute;
  left: var(--space);
  bottom: var(--space);
  max-width: 390px;
  color: var(--paper);
}

.image-ribbon p {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.image-ribbon span {
  color: rgba(245, 241, 234, 0.72);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-illustration {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.home-illustration img {
  width: 100%;
  height: clamp(320px, 45vw, 620px);
  object-fit: cover;
  object-position: 50% 54%;
  filter: saturate(0.82) brightness(0.96);
}

.tea-pour-illustration img {
  object-position: 50% 26%;
}

.section-heading {
  max-width: 780px;
  margin: 42px 0 58px auto;
}

.teas-section:not(.home-teas) .section-heading {
  width: max-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.teas-section:not(.home-teas) .section-heading h1,
.teas-section:not(.home-teas) .section-heading h2 {
  max-width: none;
  margin-bottom: 0.83em;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  white-space: nowrap;
}

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

.home-tea-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.home-tea-card {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.home-tea-card figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.home-tea-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.home-tea-card h3 {
  position: relative;
  justify-self: center;
  margin: 0;
  color: var(--tea);
  font-family: var(--cjk);
  font-size: clamp(1rem, 1.65vw, 1.55rem);
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
}

.home-tea-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.home-tea-card:hover h3::after,
.home-tea-card:focus-visible h3::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tea-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: rgba(255, 250, 242, 0.58);
  border: 1px solid var(--line);
}

.tea-card figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-deep);
}

.tea-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.tea-card-copy {
  padding: clamp(24px, 4vw, 42px);
}

.tea-type {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--tea);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tea-type.blue {
  color: var(--blue);
}

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

.tea-card p,
.education-grid p,
.brew-steps,
.form-note {
  color: var(--ink-soft);
}

dl {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  text-align: right;
}

.education-section {
  position: relative;
  padding: clamp(80px, 11vw, 150px) var(--space);
  background: var(--paper-deep);
  background-image:
    linear-gradient(rgba(235, 229, 218, 0.92), rgba(235, 229, 218, 0.92)),
    url("assets/paper-texture.png");
  background-size: auto, 620px auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.education-intro,
.education-grid,
.brew-guide-section,
.brew-panel {
  max-width: var(--max);
  margin: 0 auto;
}

.education-intro {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 62px;
}

.education-intro h1 {
  max-width: none;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

.education-intro > div:not(.section-label) {
  width: max-content;
  max-width: 100%;
  margin: clamp(48px, 7vw, 88px) 0 0 auto;
}

#home .education-intro > div:not(.section-label) {
  width: auto;
  max-width: none;
  margin-left: 0;
}

#home .education-intro > .section-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

#home .education-intro h2 {
  font-size: clamp(2.65rem, 4.1vw, 4.6rem);
  white-space: normal;
}

.education-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.education-grid article {
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.education-grid h3 {
  min-height: 2.1em;
  margin-bottom: 18px;
}

.education-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brew-guide-section {
  position: relative;
  z-index: 1;
  margin-top: clamp(44px, 7vw, 76px);
}

.brew-guide-section h2 {
  margin-bottom: clamp(30px, 4vw, 52px);
  text-align: center;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

.brew-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brew-product-option {
  min-height: 104px;
  width: 100%;
  padding: 24px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-align: left;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.brew-product-option:hover,
.brew-product-option:focus-visible,
.brew-product-option.is-active {
  background: rgba(255, 250, 242, 0.46);
  color: var(--blue);
}

/* Legacy select fallback styles, kept harmless if old markup returns. */
.brew-selector select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  outline: none;
}

.brew-selector select:focus {
  border-bottom-color: var(--blue);
}

.brew-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  margin-top: clamp(38px, 6vw, 64px);
}

.brew-panel figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

.brew-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
}

.brew-specs {
  max-width: 440px;
}

.brew-specs dd {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brew-subheading {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brew-steps {
  display: grid;
  gap: 14px;
  margin: 14px 0 0;
  padding-left: 1.2rem;
}

.brew-steps strong {
  color: var(--ink);
  font-weight: 500;
}

[hidden] {
  display: none !important;
}

.wholesale-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.contact-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(34px, 7vw, 110px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(96px, 12vw, 170px) var(--space);
}

#home .contact-section {
  border-top: 1px solid var(--line);
}

.contact-copy {
  min-width: 0;
  max-width: 860px;
}

.contact-copy h1,
.contact-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  overflow-wrap: anywhere;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.contact-links .text-link {
  overflow-wrap: anywhere;
}

.wholesale-copy .section-label {
  margin-bottom: 48px;
}

.wholesale-copy h1,
.wholesale-copy h2 {
  max-width: none;
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.partner-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--tea);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.enquiry-form {
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--blue);
}

.submit-button {
  width: 100%;
  margin-top: 10px;
  padding: 15px 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: transparent;
  color: var(--ink);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 1.6em;
  margin: 18px 0 0;
  color: var(--seal);
}

.form-status.success {
  color: var(--blue);
}

.form-note {
  margin: 18px 0 0;
  font-size: 0.82rem;
}

.form-note a {
  color: var(--tea);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer-seal {
  width: 74px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 18px;
}

.site-footer p {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.site-footer a {
  position: relative;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

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

@media (max-width: 900px) {
  .site-header {
    align-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 79px 14px auto;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(245, 241, 234, 0.97);
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(30, 29, 27, 0.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero-media {
    height: clamp(460px, 58svh, 620px);
    min-height: 0;
  }

  .hero-copy {
    padding-top: 44px;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(3.45rem, 7vw, 4.8rem);
  }

  .manifesto,
  .brew-panel,
  .wholesale-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .brew-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-intro > div:not(.section-label) {
    width: auto;
    margin-left: 0;
  }

  .tea-grid,
  .home-tea-grid,
  .education-grid {
    grid-template-columns: 1fr;
  }

  .education-grid article {
    min-height: auto;
  }

  .section-heading {
    margin-left: 0;
  }

  .teas-section:not(.home-teas) .section-heading {
    width: auto;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }

.teas-section:not(.home-teas) .section-heading h1,
.teas-section:not(.home-teas) .section-heading h2 {
  white-space: normal;
}
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand-mark strong {
    font-size: 0.92rem;
  }

  .brand-mark small {
    display: none;
  }

  .hero-media {
    height: clamp(360px, 52svh, 480px);
    min-height: 0;
  }

  .hero-copy {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 56px;
    overflow: hidden;
  }

  h1 {
    font-size: clamp(2.8rem, 12.5vw, 3.6rem);
  }

  .contact-copy h1,
  .contact-copy h2 {
    font-size: clamp(2.55rem, 11vw, 3.2rem);
  }

  .contact-copy > p:not(.eyebrow) {
    max-width: calc(100vw - 64px);
  }

  .contact-links {
    display: grid;
    gap: 18px;
  }

  .brew-product-grid {
    grid-template-columns: 1fr;
  }

  .brew-product-option {
    min-height: 78px;
  }

  .manifesto,
  .teas-section,
  .wholesale-section,
  .contact-section,
  .site-footer,
  .education-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-ribbon div {
    left: 20px;
    right: 20px;
  }

  dl div,
  .site-footer {
    display: grid;
  }

  dd {
    text-align: left;
  }
}
