:root {
  --ink: #171719;
  --muted: #686964;
  --paper: #fbfaf6;
  --porcelain: #f4f6fb;
  --mist: #dfe7f5;
  --sage: #6f7d67;
  --clay: #c78f69;
  --line: rgba(23, 23, 25, 0.14);
  --shadow: rgba(23, 23, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Cardo, Georgia, serif;
  font-size: 18px;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  min-height: 76px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
}

.header-dark {
  color: #fff;
  mix-blend-mode: difference;
}

.header-light {
  position: sticky;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-mark {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-action,
.account-actions a {
  justify-self: end;
  border: 1px solid currentColor;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
}

.account-actions a {
  justify-self: auto;
}

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 132px clamp(22px, 5vw, 76px) 72px;
  background: #1f1d1a;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(0.9) contrast(0.96);
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 13, 12, 0.6), rgba(14, 13, 12, 0.22) 47%, rgba(14, 13, 12, 0.02)),
    linear-gradient(0deg, rgba(14, 13, 12, 0.58), rgba(14, 13, 12, 0.03) 56%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(50px, 8.3vw, 104px);
}

.hero-text {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.section {
  padding: clamp(72px, 10vw, 136px) clamp(22px, 5vw, 76px);
}

.page-hero {
  padding: 150px clamp(22px, 5vw, 76px) clamp(58px, 8vw, 96px);
  background: var(--paper);
}

.page-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: clamp(56px, 8.4vw, 108px);
  font-weight: 400;
  line-height: 1.08;
}

.page-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.intro-section {
  background: #fff;
}

.intro-grid,
.product-detail-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 92px);
  max-width: 1260px;
  margin: 0 auto;
}

.intro-grid h2,
.feature-copy h2,
.product-detail-section h2 {
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: clamp(44px, 5.8vw, 74px);
  font-weight: 400;
  line-height: 1.18;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: center;
  background: var(--porcelain);
}

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

.feature-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.feature-copy .button {
  margin-top: 20px;
}

.feature-strip img {
  border-radius: 8px;
  box-shadow: 0 30px 80px var(--shadow);
}

.label-art-image {
  overflow: hidden;
  background: rgb(231, 237, 249);
  border-radius: clamp(24px, 3.2vw, 44px);
}

.collection-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0 clamp(22px, 5vw, 76px) clamp(82px, 10vw, 136px);
  background: var(--paper);
}

.coffee-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.coffee-card a {
  display: block;
  height: 100%;
}

.coffee-card img,
.placeholder-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(223, 231, 245, 0.92), rgba(251, 250, 246, 0.96)),
    radial-gradient(circle at 70% 28%, rgba(199, 143, 105, 0.24), transparent 34%);
}

.placeholder-art {
  position: relative;
}

.placeholder-art::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(23, 23, 25, 0.16);
  border-radius: 8px;
}

.placeholder-art-alt {
  background:
    linear-gradient(135deg, rgba(111, 125, 103, 0.22), rgba(251, 250, 246, 0.94)),
    radial-gradient(circle at 34% 68%, rgba(223, 231, 245, 0.9), transparent 36%);
}

.coffee-card-copy {
  padding: 24px;
}

.coffee-card-copy h2 {
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.coffee-card-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.card-meta,
.card-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coffee-card-copy .card-meta {
  margin: 0 0 14px;
  color: var(--sage);
}

.card-link {
  display: inline-flex;
  margin-top: 24px;
}

.coffee-card-muted {
  color: rgba(23, 23, 25, 0.72);
}

.coffee-card-muted .card-link {
  color: var(--muted);
}

.product-section {
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.product-copy h2,
.story-section h2,
.brew-section h2,
.shop-section h2 {
  font-size: clamp(50px, 8vw, 106px);
}

.lead,
.story-section p,
.shop-section p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.coffee-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 42px 0 0;
}

.coffee-facts div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.coffee-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coffee-facts dd {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

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

.product-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  padding: 142px clamp(22px, 5vw, 76px) clamp(70px, 9vw, 118px);
  background: var(--paper);
}

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

.product-hero h1 {
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: clamp(56px, 8.2vw, 108px);
  font-weight: 400;
  line-height: 1.08;
}

.product-hero p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.product-hero img {
  border-radius: 8px;
  box-shadow: 0 30px 80px var(--shadow);
}

.product-hero .product-label-image {
  width: min(760px, 100%);
  margin-left: auto;
  object-fit: contain;
}

.note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.note-row span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-section {
  background: #fff;
}

.product-brew {
  background: var(--porcelain);
}

.product-gallery-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  background: #fff;
}

.product-gallery-copy h2 {
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: clamp(44px, 5.8vw, 74px);
  font-weight: 400;
  line-height: 1.14;
}

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

.product-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 58px rgba(23, 23, 25, 0.12);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: end;
  padding: 150px clamp(22px, 5vw, 76px) clamp(58px, 8vw, 104px);
  background: var(--paper);
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero h1,
.about-sections h2,
.about-principles h2 {
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.about-hero h1 {
  font-size: clamp(58px, 8.2vw, 108px);
  line-height: 1.08;
}

.about-hero p:not(.section-kicker) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.52;
}

.about-hero img {
  width: 100%;
  max-height: 74vh;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 30px 80px var(--shadow);
}

.about-statement {
  padding: clamp(78px, 11vw, 148px) clamp(22px, 5vw, 76px);
  background: var(--mist);
}

.about-statement p {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.18;
}

.about-image-story {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(78px, 10vw, 132px) clamp(22px, 5vw, 76px);
  background: var(--paper);
}

.about-image-large {
  margin: 0;
}

.about-image-large img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 80px var(--shadow);
}

.feature-strip img.label-art-image,
.product-hero img.label-art-image,
.about-image-large img.label-art-image {
  background: rgb(231, 237, 249);
  border-radius: clamp(24px, 3.2vw, 44px);
}

.about-image-copy {
  max-width: 620px;
}

.about-image-copy h2 {
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 400;
  line-height: 1.12;
}

.about-image-copy p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.52;
}

.about-sections {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(34px, 7vw, 112px);
  padding: clamp(84px, 10vw, 136px) clamp(22px, 5vw, 76px);
  background: #fff;
}

.about-sections h2 {
  max-width: 700px;
  font-size: clamp(44px, 5.8vw, 74px);
  line-height: 1.14;
}

.about-copy-stack {
  max-width: 720px;
}

.about-copy-stack p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(22px, 5vw, 76px) clamp(88px, 10vw, 140px);
  background: #fff;
}

.about-principles article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.about-principles span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-principles h2 {
  margin-top: 38px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
}

.about-principles p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.single-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(92px, 10vw, 140px) clamp(22px, 5vw, 76px);
}

.single-page h1 {
  max-width: 820px;
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-size: clamp(58px, 8.1vw, 110px);
  font-weight: 400;
  line-height: 1.08;
}

.single-page-copy {
  max-width: 690px;
}

.single-page-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.45;
}

.single-page-copy .button {
  margin-top: 10px;
}

.subscription-page {
  background: var(--porcelain);
}

.account-page {
  background: var(--paper);
}

.cart-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(92px, 10vw, 140px) clamp(22px, 5vw, 76px);
  background: var(--paper);
}

.cart-copy h1,
.cart-item h2 {
  margin: 0;
  font-family: Cardo, Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
}

.cart-copy h1 {
  font-size: clamp(58px, 8.1vw, 110px);
}

.cart-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
}

.cart-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cart-item img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.cart-item h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.cart-item p:not(.card-meta) {
  color: var(--muted);
}

.cart-item .button {
  margin-top: 14px;
}

.label-panel {
  margin: 0;
}

.label-panel img {
  width: min(760px, 100%);
  margin-left: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px var(--shadow);
}

.label-panel figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.story-section {
  background: var(--mist);
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.story-section h2 {
  max-width: 980px;
}

.story-section p {
  margin-top: 30px;
}

.brew-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  background: #ffffff;
}

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

.brew-steps article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.brew-steps span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brew-steps h3 {
  margin: 34px 0 12px;
  font-size: 22px;
}

.brew-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.shop-section {
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.shop-section h2,
.shop-section p {
  margin-left: auto;
  margin-right: auto;
}

.shop-section p {
  color: rgba(255, 255, 255, 0.72);
}

.shop-section .button-primary {
  margin-top: 22px;
  background: #fff;
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(190px, 0.75fr) minmax(160px, 0.55fr) minmax(180px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(52px, 7vw, 84px) clamp(22px, 5vw, 76px);
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-kicker,
.site-footer p.footer-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.newsletter-copy,
.footer-contact p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.newsletter-form {
  display: flex;
  gap: 14px;
  align-items: end;
  margin-top: 34px;
}

.newsletter-form input,
.waitlist-form input {
  width: min(300px, 100%);
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.newsletter-form input::placeholder,
.waitlist-form input::placeholder {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter-form button,
.waitlist-form button,
.social-links a {
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 13px 20px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.waitlist-form {
  display: flex;
  gap: 14px;
  align-items: end;
  margin-top: 34px;
}

.waitlist-form input {
  width: min(360px, 100%);
}

.waitlist-form button {
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 15px 22px;
}

.footer-nav,
.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-links {
  align-items: flex-start;
  display: grid;
  grid-template-columns: repeat(2, 44px);
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 0;
  padding: 0;
  border-radius: 999px;
  text-align: center;
}

.social-links a:hover {
  background: var(--ink);
  color: #fff;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-meta {
  grid-column: 1 / -1;
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .brand-mark {
    font-size: 32px;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 22px 52px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero h1 {
    max-width: 92vw;
  }

  .product-grid,
  .brew-section,
  .product-gallery-section,
  .intro-grid,
  .feature-strip,
  .product-hero,
  .product-detail-section,
  .about-hero,
  .about-image-story,
  .about-sections,
  .about-principles,
  .single-page,
  .cart-page {
    grid-template-columns: 1fr;
  }

  .collection-section {
    grid-template-columns: 1fr;
  }

  .coffee-facts,
  .brew-steps,
  .product-gallery-grid {
    grid-template-columns: 1fr;
  }

  .label-panel figcaption {
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .account-actions {
    gap: 6px;
  }

  .account-actions a {
    padding: 9px 10px;
    font-size: 10px;
  }

  .newsletter-form,
  .waitlist-form {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .product-copy h2,
  .intro-grid h2,
  .feature-copy h2,
  .page-hero h1,
  .product-hero h1,
  .product-detail-section h2,
  .product-gallery-copy h2,
  .about-hero h1,
  .about-statement p,
  .about-image-copy h2,
  .about-sections h2,
  .about-principles h2,
  .single-page h1,
  .story-section h2,
  .brew-section h2,
  .shop-section h2 {
    line-height: 1;
  }
}
