:root {
  color-scheme: light;
  --bg: oklch(97% 0.004 80);
  --soft: oklch(94% 0.01 70);
  --line: oklch(86% 0.012 80);
  --ink: oklch(24% 0.006 80);
  --muted: oklch(45% 0.006 80);
  --faint: oklch(58% 0.008 80);
  --accent: oklch(40% 0.045 50);
  --accent-dark: oklch(30% 0.04 50);
  --green: #2e6b45;
  --gold: #b07d1a;
  --red: #a32d20;
  --blue: #2d5480;
  --paper: #f7f5f1;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 300 16px/1.7 "Work Sans", sans-serif;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover,
a:focus-visible {
  color: var(--accent-dark);
}

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

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 18px;
}

.hero {
  padding: 34px 0 26px;
}

.hero-inner {
  max-width: none;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--paper);
  background: linear-gradient(135deg, oklch(24% 0.006 80), oklch(30% 0.04 50));
  border-radius: var(--radius);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: oklch(84% 0.035 75);
}

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

h1,
h2,
h3,
dt {
  font-family: "Newsreader", serif;
  font-weight: 400;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 3.8rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 2.25rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.section {
  padding: 54px 0 72px;
}

.section-head {
  max-width: 620px;
  margin-bottom: 30px;
}

.tea-list {
  display: grid;
  gap: 14px;
}

.tea {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
  gap: 34px;
  padding: 24px;
  background: color-mix(in srgb, var(--paper) 62%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: var(--radius);
}

.tea img {
  width: 100%;
  aspect-ratio: 7 / 8;
  object-fit: cover;
  background: var(--paper);
  border-radius: calc(var(--radius) - 2px);
}

.tea-copy {
  max-width: 690px;
  padding: 4px 0;
}

.type {
  margin-bottom: 10px;
  color: var(--faint);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tea-copy p {
  color: var(--muted);
}

.tea-copy ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 18px;
  padding: 0;
  list-style: none;
}

.tea-copy li {
  color: var(--muted);
}

.tea-copy strong {
  color: var(--ink);
  font-weight: 500;
}

.brew {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 1px;
  width: min(100%, 360px);
  margin: 0 0 22px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
}

.brew div,
.brew p {
  background: var(--soft);
}

.brew div {
  padding: 16px 18px 14px;
}

.brew span {
  display: block;
  margin-bottom: 4px;
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brew strong {
  display: block;
  font-family: "Newsreader", serif;
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.05;
}

.brew p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 18px 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer {
  color: var(--faint);
  background: var(--bg);
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer a {
  text-decoration: none;
  color: var(--ink);
  font-family: "Newsreader", serif;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .hero {
    padding: 28px 0 20px;
  }

  .hero-inner {
    min-height: 220px;
    padding: 28px;
  }

  h1 {
    font-size: 3rem;
  }

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

  .tea {
    gap: 24px;
  }

  .tea img {
    width: min(100%, 360px);
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    padding: 18px 0 18px;
  }

  .hero-inner {
    min-height: 174px;
    padding: 22px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  .section {
    padding: 46px 0 62px;
  }

  .tea {
    padding: 16px;
  }

  .footer-inner {
    min-height: 96px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}
