:root {
  --ink: #20232a;
  --text: #242730;
  --muted: #73777d;
  --line: #e9e8e2;
  --soft-line: #eeeeea;
  --paper: #fbfbf8;
  --card: #ffffff;
  --cream: #f8f7f1;
  --green: #173b2d;
  --green-2: #234936;
  --sage: #6f7a4f;
  --beige: #eee8d8;
  --chip: #f0eadb;
  --amber: #c88a24;
  --amber-2: #e7b85f;
  --rust: #9c5631;
  --mint: #dce8c4;
  --shadow: 0 18px 55px rgba(36, 39, 31, 0.055);
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fbfbf8;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  color: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

.site-header {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 64px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
}

.brand-mark img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

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

.brand strong {
  color: #111;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 1px;
  color: #8a8d90;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 36px);
}

.main-nav a {
  position: relative;
  color: #1d2027;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a.active::after {
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--green);
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: var(--green);
}

[data-icon] svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-card,
.filters-panel,
.comparison-card,
.selector-card,
.list-card,
.trust-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.hero-card {
  position: relative;
  display: block;
  min-height: clamp(420px, 34vw, 520px);
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #1c241c;
  box-shadow: 0 28px 72px rgba(38, 43, 34, 0.12);
}

.hero-content {
  position: absolute;
  left: clamp(26px, 4.2vw, 62px);
  bottom: clamp(28px, 3.4vw, 50px);
  z-index: 1;
  width: min(520px, calc(100% - 52px));
  color: #fffaf0;
  padding: 0;
}

.hero-content h1 {
  max-width: 520px;
  margin: 0 0 12px;
  color: #fffaf0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.hero-content p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 18px;
  line-height: 1.42;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.hero-kicker {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  margin-bottom: 14px;
  padding: 0;
  border-radius: 0;
  color: rgba(255, 250, 240, 0.78);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.button {
  display: inline-flex;
  min-width: 190px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

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

.button.primary {
  color: #fff;
  background: #173b2d;
  box-shadow: 0 18px 35px rgba(23, 59, 45, 0.12);
}

.button.secondary {
  border: 1px solid #d2d2cc;
  color: #161914;
  background: rgba(255, 255, 255, 0.74);
}

.button.muted {
  min-width: 140px;
  min-height: 52px;
  color: #fff;
  background: #173b2d;
}

.hero-art {
  position: absolute;
  inset: 0;
}

.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-art::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 25, 19, 0.36) 0%, rgba(19, 25, 19, 0.12) 32%, rgba(19, 25, 19, 0.03) 100%),
    linear-gradient(180deg, rgba(19, 25, 19, 0.01) 0%, rgba(19, 25, 19, 0.05) 52%, rgba(19, 25, 19, 0.24) 100%);
  content: "";
  pointer-events: none;
}

.filters-panel {
  margin-top: 26px;
  overflow: hidden;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 26px 38px;
  background:
    radial-gradient(circle at 6% 0%, rgba(231, 184, 95, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 242, 0.86));
}

.search-panel__copy h2,
.section-head h2,
.list-card h3 {
  margin: 0;
  color: #171916;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.search-panel__copy p {
  max-width: 360px;
  margin: 8px 0 0;
  color: #6a7069;
  font-size: 13px;
  line-height: 1.5;
}

.search-panel__controls {
  display: grid;
  gap: 14px;
}

.tea-search {
  position: relative;
  display: grid;
  align-items: center;
}

.tea-search > span {
  position: absolute;
  left: 18px;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #f4ead8;
  color: #284634;
}

.tea-search input {
  width: 100%;
  height: 66px;
  padding: 0 22px 0 70px;
  border: 1px solid #e4d8c4;
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #20241f;
  font-size: 16px;
  font-weight: 650;
  box-shadow:
    0 18px 44px rgba(64, 48, 28, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.tea-search input::placeholder {
  color: #8a9087;
  font-weight: 550;
}

.tea-search input:focus {
  border-color: #c88a24;
  background: #fff;
  box-shadow:
    0 18px 44px rgba(64, 48, 28, 0.07),
    0 0 0 4px rgba(200, 138, 36, 0.12);
}

.type-filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.type-filters button {
  display: inline-flex;
  min-width: 0;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid #e3d8c7;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.74);
  color: #4f574f;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(64, 48, 28, 0.035);
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.type-filters button span {
  display: block;
  width: 34px;
  height: 34px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(213, 174, 105, 0.48);
  border-radius: 50%;
  background: #fff7e8;
  box-shadow: 0 8px 16px rgba(132, 87, 27, 0.1);
}

.type-filters button img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.type-filters button:hover {
  transform: translateY(-1px);
  border-color: #d0b98e;
  background: #fffaf0;
  color: #233d2e;
}

.type-filters button.active {
  border-color: #203b2d;
  background: #203b2d;
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 59, 45, 0.16);
}

.type-filters button.active span {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.comparison-card {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 38px 22px;
}

.section-head > div:first-child {
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
}

#resultCount {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf0df;
  color: #61704a;
  font-size: 12px;
  font-weight: 800;
}

.view-switch {
  display: flex;
  overflow: hidden;
  border: 1px solid #d9d4c7;
  border-radius: 7px;
  background: #f5f1e8;
}

.view-switch button {
  display: inline-flex;
  min-width: 150px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-right: 1px solid #d9d4c7;
  background: transparent;
  color: #4b514a;
  font-size: 13px;
  font-weight: 700;
}

.view-switch button:last-child {
  border-right: 0;
}

.view-switch button.active {
  background: #fffdf8;
  color: var(--green);
}

.table-wrap {
  overflow: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tea-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 6% 0%, rgba(231, 184, 95, 0.1), transparent 28%),
    #fffdf8;
}

.tea-card-grid[hidden] {
  display: none;
}

.tea-preview-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  min-height: 188px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #e4d8c4;
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--tea-color) 16%, transparent), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 236, 0.82));
  color: #20241f;
  text-align: left;
  box-shadow: 0 14px 34px rgba(64, 48, 28, 0.055);
  cursor: pointer;
  transition:
    transform 200ms var(--ease),
    border-color 200ms var(--ease),
    box-shadow 200ms var(--ease);
}

.tea-preview-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--tea-color), rgba(200, 138, 36, 0.68));
  content: "";
}

.tea-preview-card:hover,
.tea-preview-card:focus-visible {
  transform: translateY(-2px);
  border-color: #d4bd91;
  box-shadow: 0 20px 44px rgba(64, 48, 28, 0.095);
}

.tea-preview-card:focus-visible {
  outline: 0;
}

.tea-preview-card__image {
  position: relative;
  display: block;
  width: 88px;
  height: 88px;
  overflow: hidden;
  align-self: start;
  border: 1px solid #d9d1c3;
  border-radius: 50%;
  background: #f3eee3;
  box-shadow:
    0 14px 28px rgba(43, 39, 31, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tea-preview-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 260ms var(--ease);
}

.tea-preview-card:hover .tea-preview-card__image img {
  transform: scale(1.07);
}

.tea-preview-card__body {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.tea-preview-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.tea-preview-card__top strong,
.tea-preview-card__top small {
  display: block;
}

.tea-preview-card__top strong {
  color: #1c211c;
  font-size: 16px;
  font-weight: 850;
}

.tea-preview-card__top small {
  margin-top: 3px;
  color: #6a7069;
  font-size: 12px;
}

.tea-preview-card__note {
  display: block;
  color: #555d55;
  font-size: 13px;
  line-height: 1.45;
}

.tea-preview-card__taste {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tea-preview-card__taste em {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #f4ead8;
  color: #5b553f;
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.tea-preview-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid #eee5d6;
}

.tea-preview-card__metrics > span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.tea-preview-card__metrics small {
  color: #747972;
  font-size: 10px;
  font-weight: 800;
}

.tea-preview-card__metrics .leaf-rating,
.tea-preview-card__metrics .dot-rating {
  min-width: 0;
  gap: 3px;
}

.tea-preview-card__metrics .leaf-rating span {
  width: 10px;
  height: 10px;
}

.tea-preview-card__metrics .dot-rating span {
  width: 8px;
  height: 8px;
}

.empty-card-state {
  grid-column: 1 / -1;
  padding: 38px 24px;
  border: 1px solid #e8dcc8;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #6d746d;
  font-size: 15px;
  font-weight: 650;
  text-align: center;
}

table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
}

th,
td {
  border-right: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  padding: 16px 22px;
  text-align: left;
  vertical-align: middle;
}

th:last-child,
td:last-child {
  border-right: 0;
}

th {
  color: #3a3f38;
  background: #faf9f5;
  font-size: 11px;
  font-weight: 800;
}

.sort-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
  line-height: 1.25;
  letter-spacing: inherit;
  transition: color 160ms var(--ease), opacity 160ms var(--ease);
}

.sort-button span {
  display: inline-block;
  width: 9px;
  height: 9px;
  color: #8f978d;
  opacity: 0.46;
  transform: translateY(-1px);
  transition: opacity 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}

.sort-button span::before {
  content: "↧";
  font-size: 11px;
  line-height: 1;
}

.sort-button:hover,
.sort-button:focus-visible,
.sort-button.active {
  color: var(--green);
}

.sort-button:focus-visible {
  outline: 2px solid rgba(28, 68, 50, 0.18);
  outline-offset: 4px;
}

.sort-button:hover span,
.sort-button:focus-visible span,
.sort-button.active span {
  color: var(--green);
  opacity: 1;
}

.sort-button[data-direction="asc"] span {
  transform: translateY(1px) rotate(180deg);
}

td {
  color: #222720;
  background: rgba(255, 255, 255, 0.95);
  font-size: 13px;
}

tbody tr:hover td {
  background: #fbfbf6;
}

tbody tr {
  cursor: pointer;
  outline: 0;
}

tbody tr:focus-visible td {
  background: #f7f8f1;
  box-shadow: inset 0 0 0 2px rgba(23, 59, 45, 0.18);
}

.tea-name {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  min-width: 215px;
}

.tea-photo {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  overflow: hidden;
  padding: 2px;
  border: 1px solid #d9d1c3;
  border-radius: 50%;
  background: #f3eee3;
  box-shadow:
    0 10px 22px rgba(43, 39, 31, 0.13),
    0 2px 5px rgba(43, 39, 31, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.tea-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 260ms var(--ease);
}

.tea-photo::after {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.52), transparent 15%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 48%);
  content: "";
  pointer-events: none;
}

tbody tr:hover .tea-photo {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(43, 39, 31, 0.16),
    0 3px 7px rgba(43, 39, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

tbody tr:hover .tea-photo img {
  transform: scale(1.1);
}

.empty-row td {
  padding: 34px 24px;
  color: #6d746d;
  font-size: 15px;
  font-weight: 650;
  text-align: center;
}

.tea-name strong,
.tea-name small {
  display: block;
}

.tea-name strong {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 800;
}

.tea-name small {
  color: #666c65;
  font-size: 12px;
}

.type-pill {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #f2ead8;
  color: #4a463b;
  font-size: 12px;
  font-weight: 800;
}

.type-pill.green {
  background: #e7ecd6;
}

.type-pill.dark {
  background: #eeeae4;
}

.type-pill.puer {
  background: #f1e1d7;
}

.taste-text {
  max-width: 140px;
  line-height: 1.45;
}

.leaf-rating,
.dot-rating {
  display: flex;
  gap: 5px;
  min-width: 102px;
}

.leaf-rating span {
  width: 14px;
  height: 14px;
  background: #d8d8d2;
  clip-path: path("M7 1C2 3 1 8 3 12c4 0 9-3 10-10-2-1-4-1-6-1Z");
}

.leaf-rating span.on {
  background: #5a6940;
}

.dot-rating span {
  width: 10px;
  height: 10px;
  border: 1px solid #111;
  border-radius: 50%;
}

.dot-rating span.on {
  background: #111;
}

.tea-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

.tea-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.tea-modal__backdrop {
  position: absolute;
  inset: 0;
  background: #fbfbf8;
}

.tea-modal__panel {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: auto;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 32% 0%, rgba(115, 136, 84, 0.09), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fbfaf5 100%);
  box-shadow: none;
  transform: translateY(10px);
  transition: transform 260ms var(--ease);
}

.tea-modal.open .tea-modal__panel {
  transform: translateY(0);
}

#teaModalContent {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 32px 0 42px;
}

.tea-modal__close {
  position: fixed;
  top: 26px;
  left: 28px;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(211, 207, 196, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  color: #242730;
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.modal-hero {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  min-height: 0;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid #eadcc5;
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 20%, rgba(231, 184, 95, 0.16), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(103, 120, 63, 0.09), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 239, 0.9));
  box-shadow: 0 22px 70px rgba(96, 65, 28, 0.09);
  isolation: isolate;
  overflow: hidden;
}

.modal-hero::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--amber-2), var(--rust));
  content: "";
}

.modal-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='1180' height='390' viewBox='0 0 1180 390' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%235f7441' stroke-linecap='round' stroke-linejoin='round' opacity='.34'%3E%3Cpath d='M742 43c70 44 126 91 189 161 44 49 95 86 163 111' stroke-width='2.6'/%3E%3Cpath d='M123 296c83-82 172-133 274-156 69-15 133-42 190-86' stroke-width='2.2'/%3E%3Cpath d='M924 201c18-36 45-50 82-45-9 39-35 58-82 45Z' fill='%235f7441' stroke-width='1.4'/%3E%3Cpath d='M1000 265c27-27 56-31 88-11-21 30-50 37-88 11Z' fill='%235f7441' stroke-width='1.4'/%3E%3Cpath d='M813 115c35-10 62 0 82 31-34 16-62 6-82-31Z' fill='%235f7441' stroke-width='1.4'/%3E%3Cpath d='M318 171c-37-9-60 3-78 34 36 14 63 3 78-34Z' fill='%235f7441' stroke-width='1.4'/%3E%3Cpath d='M235 222c-43 5-68 28-76 68 42 2 69-20 76-68Z' fill='%235f7441' stroke-width='1.4'/%3E%3Cpath d='M467 94c-41-3-70 15-88 53 43 8 72-10 88-53Z' fill='%235f7441' stroke-width='1.4'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 98% auto;
  content: "";
  opacity: 0.18;
  pointer-events: none;
}

.modal-visual {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #e7d5b7;
  border-radius: 16px;
  background:
    radial-gradient(circle at 24% 14%, rgba(231, 184, 95, 0.28), transparent 34%),
    radial-gradient(circle at 80% 84%, rgba(111, 122, 79, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.92), rgba(242, 234, 216, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 42px rgba(96, 65, 28, 0.08);
}

.modal-visual::before {
  display: none;
}

.modal-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 304px;
  justify-self: center;
  margin: 0;
  border: 1px solid rgba(231, 213, 183, 0.86);
  border-radius: 13px;
  object-fit: cover;
  box-shadow:
    0 16px 34px rgba(112, 70, 26, 0.13),
    0 0 0 6px rgba(255, 255, 255, 0.34);
}

.modal-gallery {
  display: none;
}

.modal-gallery img {
  width: 74px;
  height: 58px;
  border: 1px solid rgba(211, 207, 196, 0.9);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(36, 39, 31, 0.08);
}

.modal-summary {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  padding: 6px 4px 0;
}

.favorite-action {
  display: inline-flex;
  position: absolute;
  top: 4px;
  right: 4px;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #20382b;
  font-weight: 700;
}

.favorite-action svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.modal-tags,
.taste-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-tags span,
.taste-chips span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #f4ead8;
  color: #4f554c;
  font-size: 13px;
  font-weight: 700;
}

.modal-tags span:first-child {
  background: #213b2d;
  color: #fff;
}

.taste-chips span {
  border: 1px solid rgba(200, 138, 36, 0.2);
  background: #fff4df;
  color: #734316;
}

.modal-summary h2 {
  margin: 28px 0 5px;
  color: #1e211d;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.modal-summary h2::after {
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--amber-2));
  content: "";
}

.modal-latin {
  margin: 0 0 16px;
  color: #626760;
  font-size: 17px;
}

.modal-description {
  max-width: 760px;
  margin: 0 0 16px;
  color: #5d635c;
  font-size: 15px;
  line-height: 1.62;
}

.modal-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0 24px;
  max-width: 760px;
  margin-top: 20px;
  padding: 6px 18px;
  border: 1px solid #e7d5b7;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 255, 255, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.modal-metric {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid #eeece5;
  color: #333a32;
  font-size: 13px;
  font-weight: 650;
}

.modal-metric:last-child {
  border-bottom: 0;
}

.modal-leaves,
.modal-dots {
  display: flex;
  gap: 6px;
}

.modal-leaves span {
  width: 13px;
  height: 13px;
  background: #d9dad3;
  clip-path: path("M7 1C2 3 1 8 3 12c4 0 9-3 10-10-2-1-4-1-6-1Z");
}

.modal-leaves span.on {
  background: linear-gradient(135deg, #67783f, #c88a24);
}

.modal-dots span {
  width: 9px;
  height: 9px;
  border: 1px solid #1f2228;
  border-radius: 50%;
}

.modal-dots span.on {
  background: #1f2228;
}

.detail-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.detail-feature {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
  overflow: hidden;
  border: 1px solid #e7dcc9;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 230, 0.68));
  box-shadow: 0 10px 26px rgba(96, 65, 28, 0.045);
}

.detail-feature::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--amber-2), var(--sage));
  content: "";
}

.detail-feature:last-child {
  border-right: 0;
}

.detail-feature > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(213, 174, 105, 0.5);
  background: #fff7e8;
  color: #85521d;
  box-shadow: 0 10px 22px rgba(132, 87, 27, 0.12);
}

.detail-feature__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-feature svg,
.benefit-grid svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.detail-feature strong,
.detail-feature small {
  display: block;
}

.detail-feature strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.detail-feature small {
  color: #6a7069;
  font-size: 13px;
}

.detail-body {
  display: block;
  margin-top: 16px;
  border-bottom: 0;
}

.detail-nav {
  display: none;
}

.detail-nav a {
  padding: 16px 20px;
  border-radius: 8px;
  color: #252923;
  font-size: 14px;
  font-weight: 650;
}

.detail-nav a:first-child,
.detail-nav a:hover {
  background: #f5f3ee;
}

.detail-sections {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 14px;
  align-items: stretch;
}

.detail-side {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  height: 100%;
}

.detail-sections section {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #e8dece;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(42, 45, 36, 0.04);
}

.detail-sections section::before,
.related-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-2), var(--sage));
  content: "";
}

.detail-sections section:last-child {
  border-bottom: 1px solid var(--line);
}

.detail-sections h3,
.related-card h3 {
  margin: 0 0 22px;
  color: #1d211c;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.detail-sections p {
  max-width: 100%;
  color: #555c55;
  line-height: 1.6;
}

.review-lead {
  margin-top: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--amber);
  border-radius: 12px;
  background: #fff6e4;
  color: #343a33;
  font-size: 15px;
  font-weight: 650;
}

.review-block {
  margin-top: 18px;
}

.review-block h4,
.review-columns h4 {
  margin: 0 0 8px;
  color: #794719;
  font-size: 13px;
  font-weight: 850;
}

.review-block p,
.review-columns p {
  margin: 0;
}

.review-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.review-columns > div {
  padding: 16px;
  border: 1px solid #e8d8bd;
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(231, 184, 95, 0.16), transparent 36%),
    #fffaf0;
}

.review-columns ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #555c55;
  font-size: 14px;
}

.aroma-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  gap: 12px;
}

.aroma-grid div {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #424840;
  font-size: 13px;
  text-align: center;
}

.aroma-grid span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #e7d3ae;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(135deg, #ffe6b2, #fffaf0);
  color: #8a531b;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(154, 93, 32, 0.1);
}

.aroma-grid .aroma-photo {
  overflow: hidden;
  padding: 2px;
  background: #fffaf0;
}

.aroma-grid .aroma-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brew-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.brew-section > img {
  display: none;
}

.brew-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.brew-grid div,
.benefit-grid div {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid #eee5d6;
  border-radius: 12px;
  background: #fffdf8;
  color: #343a33;
  font-size: 13px;
}

.brew-grid small {
  color: #747972;
}

.tea-tip {
  max-width: 660px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #e6d0a8;
  border-left: 4px solid var(--amber);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 138, 36, 0.14), transparent 34%),
    #fff6e4;
  color: #555c55;
  line-height: 1.65;
}

.benefit-grid div {
  grid-template-columns: 44px 1fr;
  align-items: center;
  color: #4d554d;
  line-height: 1.45;
}

.benefit-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(213, 174, 105, 0.42);
  background: #fff7e8;
  color: #61704a;
  box-shadow: 0 10px 20px rgba(132, 87, 27, 0.1);
}

.benefit-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.modal-footer-grid {
  padding: 16px 0 0;
}

.related-card {
  position: relative;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid #e8dece;
  border-radius: 12px;
  background:
    radial-gradient(circle at 98% 0%, rgba(231, 184, 95, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.78);
}

.related-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.related-list button {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px 14px;
  align-items: center;
  min-height: 94px;
  padding: 12px;
  border: 1px solid #eadfce;
  border-radius: 10px;
  background: #fffaf0;
  text-align: left;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    transform 180ms var(--ease);
}

.related-list button:hover {
  border-color: #cfc7b8;
  background: #fbfaf5;
  transform: translateY(-1px);
}

.related-list img {
  grid-row: span 3;
  width: 62px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.related-list span {
  align-self: end;
  font-size: 13px;
  font-weight: 800;
}

.related-list small {
  align-self: center;
  color: #687067;
  font-size: 12px;
}

.related-list .leaf-rating {
  min-width: 0;
  gap: 4px;
}

.related-list .leaf-rating span {
  width: 11px;
  height: 11px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 22px 0;
}

.selector-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  padding: 48px 40px;
  color: #22252c;
  background:
    radial-gradient(circle at 78% 74%, rgba(118, 143, 81, 0.12), transparent 40%),
    linear-gradient(135deg, #ffffff, #f5f6f1 72%);
}

.selector-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 252, 0.98) 0%, rgba(255, 255, 252, 0.94) 35%, rgba(255, 255, 252, 0.58) 52%, transparent 72%),
    radial-gradient(circle at 26% 50%, rgba(255, 248, 231, 0.52), transparent 34%);
  content: "";
  pointer-events: none;
}

.selector-card > div {
  position: relative;
  z-index: 2;
}

.selector-card h2 {
  max-width: 390px;
  margin: 0 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1.13;
}

.selector-card p {
  max-width: 330px;
  margin: 0 0 24px;
  color: #39413b;
  line-height: 1.55;
}

.selector-card .button {
  border: 0;
}

.selector-card img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  opacity: 0.92;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 18%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 18%, #000 42%);
}

.picker-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

.picker-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.picker-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(246, 245, 239, 0.84);
  backdrop-filter: blur(12px);
}

.picker-modal__panel {
  position: relative;
  width: min(100%, 920px);
  max-height: min(820px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid #e7dcc9;
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 8%, rgba(175, 190, 128, 0.2), transparent 30%),
    linear-gradient(135deg, #fffdf8, #f7f2e7);
  box-shadow: 0 30px 90px rgba(50, 43, 30, 0.2);
  transform: translateY(10px);
  transition: transform 220ms var(--ease);
}

.picker-modal.open .picker-modal__panel {
  transform: translateY(0);
}

.picker-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #ddd2bf;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  color: #252923;
  font-size: 26px;
  line-height: 1;
}

.picker-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(360px, 1fr);
  gap: 32px;
  min-height: 520px;
  padding: clamp(32px, 5vw, 64px);
}

.picker-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.picker-kicker {
  justify-self: start;
  min-height: 30px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eaf0dc;
  color: #586b3d;
  font-size: 12px;
  font-weight: 800;
}

.picker-copy h2 {
  max-width: 420px;
  margin: 0;
  color: #20241f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.04;
}

.picker-copy p {
  max-width: 380px;
  margin: 0;
  color: #59615a;
  font-size: 16px;
  line-height: 1.55;
}

.picker-answers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.picker-answers span {
  padding: 8px 12px;
  border: 1px solid rgba(207, 178, 122, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.86);
  color: #66583f;
  font-size: 12px;
  font-weight: 750;
}

.picker-options,
.picker-results {
  display: grid;
  align-content: center;
  gap: 12px;
}

.picker-options button,
.picker-results button {
  position: relative;
  display: grid;
  width: 100%;
  border: 1px solid #e3d6c1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: #252a25;
  text-align: left;
  box-shadow: 0 12px 34px rgba(68, 54, 29, 0.05);
  transition: border 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.picker-options button {
  gap: 5px;
  min-height: 92px;
  align-content: center;
  padding: 20px 24px;
}

.picker-options button:hover,
.picker-options button:focus-visible,
.picker-results button:hover,
.picker-results button:focus-visible {
  border-color: rgba(97, 112, 74, 0.56);
  box-shadow: 0 18px 42px rgba(57, 62, 40, 0.12);
  transform: translateY(-2px);
}

.picker-options strong,
.picker-results strong {
  font-size: 20px;
  line-height: 1.15;
}

.picker-options small {
  color: #626960;
  font-size: 14px;
}

.picker-footer {
  grid-column: 1 / -1;
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #687067;
  font-size: 13px;
  font-weight: 750;
}

.picker-footer button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #d9cfbe;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #173b2d;
  font-weight: 800;
}

.picker-shell--results {
  grid-template-columns: minmax(240px, 0.72fr) minmax(420px, 1fr);
}

.picker-results button {
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 14px;
  overflow: hidden;
}

.picker-results button::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--tea-color);
  content: "";
}

.picker-results img {
  width: 84px;
  height: 84px;
  border: 1px solid rgba(220, 199, 158, 0.68);
  border-radius: 15px;
  object-fit: cover;
}

.picker-results span {
  display: grid;
  gap: 5px;
}

.picker-results small {
  color: #6e7e50;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.picker-results em {
  color: #5e665e;
  font-size: 14px;
  font-style: normal;
}

.list-card {
  padding: 28px 28px;
}

.list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.list-head a {
  color: #1b251d;
  font-size: 12px;
  font-weight: 800;
}

.collection-list,
.article-list {
  display: grid;
}

.collection-list a {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto 20px;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.collection-list a::after,
.article-list a::after {
  content: "›";
  justify-self: end;
  color: #6c7069;
  font-size: 26px;
}

.collection-list a::after {
  grid-column: 4;
  grid-row: 1;
}

.article-list a::after {
  grid-column: 3;
}

.collection-list a:last-child,
.article-list a:last-child {
  border-bottom: 0;
}

.collection-list strong,
.collection-list small {
  display: block;
}

.collection-list strong {
  font-size: 14px;
}

.collection-list small {
  justify-self: end;
  margin-top: 5px;
  color: #72766f;
  font-size: 12px;
  text-align: right;
}

.thumb {
  display: block;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border: 1px solid rgba(213, 174, 105, 0.48);
  border-radius: 50%;
  background: #fff7e8;
  box-shadow: 0 10px 22px rgba(64, 48, 28, 0.08);
}

.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 240ms var(--ease);
}

.collection-list a:hover .thumb img {
  transform: scale(1.18);
}

.article-list a {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  column-gap: 14px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
  color: #353a34;
  font-size: 14px;
}

.article-list span {
  display: block;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(213, 174, 105, 0.44);
  border-radius: 50%;
  background: #fff7e8;
  box-shadow: 0 8px 16px rgba(64, 48, 28, 0.065);
}

.article-list span img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 240ms var(--ease);
}

.article-list a:hover span img {
  transform: scale(1.18);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 28px 0 30px;
  padding: 26px 38px;
}

.trust-row div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 16px;
  align-items: center;
}

.trust-row span {
  grid-row: span 2;
  color: #53633f;
}

.article-page {
  padding-bottom: 52px;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: center;
  width: min(100%, 1080px);
  margin: 0 auto;
  overflow: hidden;
  min-height: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 16%, rgba(231, 184, 95, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #f8f5ec);
  box-shadow: 0 22px 70px rgba(96, 65, 28, 0.08);
}

.article-back {
  display: inline-flex;
  width: fit-content;
  margin-right: 8px;
  margin-bottom: 18px;
  color: #203b2d;
  font-size: 13px;
  font-weight: 800;
}

.article-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf0df;
  color: #61704a;
  font-size: 12px;
  font-weight: 850;
}

.article-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #1f2228;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.article-hero p {
  max-width: 600px;
  margin: 16px 0 0;
  color: #5b625b;
  font-size: 16px;
  line-height: 1.55;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(213, 174, 105, 0.42);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(64, 48, 28, 0.11);
}

.article-content {
  display: grid;
  grid-template-columns: minmax(0, 1080px);
  justify-content: center;
  gap: 0;
  align-items: start;
  margin-top: 42px;
}

.article-body {
  display: grid;
  gap: 46px;
}

.article-body section {
  padding: 0 0 46px;
  border: 0;
  border-bottom: 1px solid rgba(226, 217, 200, 0.86);
  border-radius: 0;
  background: transparent;
}

.article-body section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-body h2 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #20241f;
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.article-body p,
.article-body li {
  color: #555d55;
  font-size: 17px;
  line-height: 1.82;
}

.article-body p {
  max-width: 780px;
  margin: 0 0 14px;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 0;
  padding-left: 22px;
}

.article-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
}

.article-lead img,
.article-figure img,
.article-image-strip img {
  width: 100%;
  border: 1px solid rgba(213, 174, 105, 0.38);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(64, 48, 28, 0.1);
}

.article-lead img {
  aspect-ratio: 4 / 3;
}

.article-figure {
  display: grid;
  gap: 10px;
  margin: 28px 0 2px;
}

.article-figure img {
  aspect-ratio: 16 / 7;
}

.article-figure figcaption {
  color: #72786d;
  font-size: 13px;
  line-height: 1.45;
}

.article-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.article-note,
.article-example {
  padding: 18px;
  border: 1px solid #eee5d6;
  border-radius: 14px;
  background: #fffdf8;
}

.article-note strong,
.article-example strong {
  display: block;
  margin-bottom: 8px;
  color: #20241f;
}

.article-image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.article-image-strip img {
  aspect-ratio: 1 / 0.74;
}

.article-table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid #eee5d6;
  border-radius: 14px;
  background: #fffdf8;
}

.article-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #eee5d6;
  color: #4f574f;
  font-size: 14px;
  text-align: left;
}

.article-table th {
  background: #f7f2e7;
  color: #20241f;
  font-weight: 850;
}

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

.article-table td:last-child {
  color: #203b2d;
  font-weight: 800;
}

.article-callout {
  padding: 30px !important;
  border-color: #e6d0a8 !important;
  border-left: 4px solid var(--amber) !important;
  border-bottom: 1px solid #e6d0a8 !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 138, 36, 0.13), transparent 34%),
    #fff8ea !important;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.article-card-grid div {
  padding: 18px;
  border: 1px solid #eee5d6;
  border-radius: 14px;
  background: #fffdf8;
}

.article-card-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #20241f;
}

.collection-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
}

.collection-intro img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  border: 1px solid rgba(213, 174, 105, 0.38);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(64, 48, 28, 0.1);
}

.collection-tea-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.collection-tea-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #eee5d6;
  border-radius: 16px;
  background:
    radial-gradient(circle at 0 0, rgba(231, 184, 95, 0.12), transparent 34%),
    #fffdf8;
  color: #20241f;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.collection-tea-card:hover {
  transform: translateY(-2px);
  border-color: #d8c293;
  box-shadow: 0 18px 42px rgba(64, 48, 28, 0.08);
}

.collection-tea-card img {
  width: 70px;
  height: 70px;
  border: 1px solid #e1d7c7;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(64, 48, 28, 0.1);
}

.collection-tea-card strong,
.collection-tea-card small,
.collection-tea-card > div,
.collection-tea-card span {
  display: block;
}

.collection-tea-card strong {
  color: #1d211c;
  font-size: 17px;
  font-weight: 850;
}

.collection-tea-card small {
  margin-top: 3px;
  color: #6a7069;
  font-size: 12px;
}

.collection-tea-card p {
  margin: 9px 0 0;
  color: #555d55;
  font-size: 13px;
  line-height: 1.5;
}

.collection-tea-card span {
  margin-top: 10px;
  color: #203b2d;
  font-size: 12px;
  font-weight: 800;
}

.trust-row strong {
  font-size: 14px;
}

.trust-row p {
  margin: 4px 0 0;
  color: #72766f;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .page {
    width: min(100% - 32px, 1500px);
  }

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

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .hero-card {
    min-height: 440px;
  }

  .article-content {
    grid-template-columns: 1fr;
  }

  .article-lead {
    grid-template-columns: 1fr;
  }

  .hero-content {
    left: 34px;
    bottom: 34px;
    padding: 0;
  }

  .hero-art {
    min-height: 0;
  }

  .article-hero {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .search-panel,
  .bottom-grid,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .tea-modal {
    padding: 0;
  }

  #teaModalContent {
    width: min(100% - 36px, 1280px);
  }

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

  .modal-visual {
    min-height: 0;
  }

  .modal-summary {
    padding: 8px 0 0;
  }

  .detail-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-feature {
    border-bottom: 1px solid var(--line);
  }

  .related-list,
  .brew-grid,
  .benefit-grid,
  .tea-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aroma-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 20px, 1500px);
  }

  .site-header {
    min-height: auto;
    padding: 16px 0;
    gap: 14px;
  }

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

  .hero-card {
    min-height: 430px;
    border-radius: 22px;
  }

  .hero-content {
    left: 22px;
    bottom: 24px;
    width: calc(100% - 44px);
    padding: 0;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 0;
  }

  .hero-kicker {
    min-height: auto;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-art {
    min-height: 0;
  }

  .bottom-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .bottom-grid {
    margin-inline: 16px;
  }

  .search-panel,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px;
  }

  .tea-search,
  .tea-search input,
  .search-panel__controls {
    width: 100%;
  }

  .tea-search input {
    height: 58px;
    padding-left: 62px;
    font-size: 14px;
  }

  .tea-search > span {
    left: 14px;
    width: 34px;
    height: 34px;
  }

  .type-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .type-filters button {
    min-height: 52px;
    justify-content: flex-start;
    padding: 7px 11px;
    font-size: 12px;
  }

  .type-filters button span {
    width: 31px;
    height: 31px;
  }

  .view-switch,
  .view-switch button {
    width: 100%;
  }

  .tea-card-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .article-hero {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .article-hero h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .article-hero p {
    font-size: 16px;
  }

  .article-hero img {
    width: min(100%, 220px);
    justify-self: start;
    border-radius: 22px;
  }

  .article-content {
    gap: 18px;
  }

  .article-body section {
    padding: 0 0 34px;
  }

  .article-body h2 {
    font-size: 26px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
    line-height: 1.72;
  }

  .article-card-grid,
  .article-split,
  .article-image-strip,
  .collection-intro,
  .collection-tea-grid {
    grid-template-columns: 1fr;
  }

  .tea-preview-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
  }

  .tea-preview-card__image {
    width: 72px;
    height: 72px;
  }

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

  .selector-card {
    padding: 32px 24px 190px;
  }

  .selector-card img {
    inset: auto 0 0;
    width: 100%;
    height: 230px;
    object-position: right bottom;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 18%, #000 46%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 18%, #000 46%);
  }

  .selector-card::before {
    background: linear-gradient(180deg, rgba(255, 255, 252, 0.98) 0%, rgba(255, 255, 252, 0.92) 44%, rgba(255, 255, 252, 0.34) 72%, transparent 100%);
  }

  .picker-modal {
    align-items: end;
    padding: 12px;
  }

  .picker-modal__panel {
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 18px;
  }

  .picker-modal__close {
    top: 14px;
    right: 14px;
  }

  .picker-shell,
  .picker-shell--results {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 54px 20px 24px;
  }

  .picker-copy {
    gap: 12px;
  }

  .picker-copy h2 {
    font-size: 30px;
  }

  .picker-options button {
    min-height: 76px;
    padding: 16px 18px;
  }

  .picker-results button {
    grid-template-columns: 68px 1fr;
    min-height: 96px;
    gap: 14px;
  }

  .picker-results img {
    width: 68px;
    height: 68px;
  }

  .trust-row {
    padding: 22px;
  }

  .tea-modal {
    padding: 0;
  }

  .tea-modal__panel {
    max-height: 100vh;
    border-radius: 0;
  }

  #teaModalContent {
    width: min(100% - 20px, 1280px);
    padding: 58px 0 28px;
  }

  .tea-modal__close {
    top: 14px;
    left: 14px;
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .modal-hero {
    gap: 18px;
    min-height: 0;
    margin-top: 0;
    padding: 16px;
    border-radius: 14px;
  }

  .modal-visual {
    min-height: 0;
    padding: 18px;
  }

  .modal-main-img {
    width: 100%;
    min-height: 230px;
    border-width: 1px;
  }

  .modal-summary {
    padding: 0;
  }

  .favorite-action {
    position: static;
    justify-self: start;
    margin-bottom: 18px;
  }

  .modal-summary h2 {
    margin-top: 22px;
    font-size: 34px;
  }

  .modal-latin {
    font-size: 17px;
  }

  .modal-metrics,
  .detail-strip,
  .related-list,
  .brew-grid,
  .benefit-grid,
  .modal-footer-grid,
  .detail-sections {
    grid-template-columns: 1fr;
  }

  .detail-side {
    gap: 12px;
  }

  .detail-feature {
    min-height: 70px;
    padding: 14px 16px;
  }

  .detail-sections section {
    padding: 20px;
  }

  .aroma-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .modal-footer-grid {
    padding-top: 12px;
  }

  .related-card {
    padding: 22px;
  }
}
