:root {
  color-scheme: light;
  --bg: #f6efe4;
  --surface: rgba(255, 251, 245, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #1e2c28;
  --muted: #61736b;
  --accent: #26493f;
  --accent-soft: #d8e6df;
  --border: rgba(30, 44, 40, 0.12);
  --shadow: 0 22px 70px rgba(30, 44, 40, 0.11);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(209, 228, 216, 0.85), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(235, 213, 173, 0.32), transparent 24rem),
    linear-gradient(180deg, #fcf7f1 0%, var(--bg) 100%);
}

body.nav-open { overflow: hidden; }

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  background: rgba(38, 73, 63, 0.08);
  font-size: 0.95rem;
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.45;
  pointer-events: none;
}

.page-glow-left {
  top: 3rem;
  left: -9rem;
  background: rgba(181, 212, 194, 0.5);
}

.page-glow-right {
  right: -8rem;
  bottom: 4rem;
  background: rgba(231, 194, 140, 0.38);
}

.shell {
  position: relative;
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.site-header,
.site-footer,
.split-section,
.section-heading,
.hero-grid,
.hero-actions,
.hero-badge,
.info-grid,
.card-grid,
.catalog-grid,
.link-grid {
  display: grid;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(30, 44, 40, 0.08);
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  justify-self: end;
  padding: 0.55rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: rgba(38, 73, 63, 0.08);
  color: var(--accent);
  font: inherit;
}

.site-nav {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-nav a {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
}

.site-nav a.is-active {
  background: rgba(38, 73, 63, 0.12);
  color: var(--accent);
}

.content {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-grid,
.split-section {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
}

.hero-copy h1,
.article-flow h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.section-block + .section-block {
  margin-top: 2rem;
}

.section-heading h2,
.article-flow h2,
.product-card h3,
.card h3,
.info-card h3 {
  margin: 0;
  line-height: 1.15;
}

.eyebrow,
.product-style,
.footer-note {
  margin: 0;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}

.button,
.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #f8f3ea;
  text-decoration: none;
}

.button:hover,
.footer-link:hover {
  text-decoration: none;
}

.button-secondary {
  background: rgba(38, 73, 63, 0.1);
  color: var(--accent);
}

.hero-visual,
.note-card,
.card,
.info-card,
.product-card,
.link-card,
.faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-strong);
  box-shadow: 0 10px 30px rgba(30, 44, 40, 0.06);
}

.hero-visual {
  padding: 1.1rem;
}

.hero-badge,
.card,
.info-card,
.product-card,
.link-card,
.faq-item {
  padding: 1rem;
}

.tea-illustration {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  margin-top: 0.75rem;
  grid-template-columns: auto 1fr;
  align-items: start;
  background: rgba(38, 73, 63, 0.08);
}

.card-grid,
.info-grid,
.catalog-grid,
.link-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.note-stack { display: grid; gap: 0.85rem; }

.note-card { padding: 1rem 1.1rem; }

.product-price {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--accent);
}

.link-card {
  display: grid;
  gap: 0.45rem;
  min-height: 9rem;
}

.faq-list { display: grid; gap: 0.85rem; }

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 0.75rem 0 0;
}

.site-footer {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem 0.2rem 0;
  color: var(--muted);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 0.85rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    padding-top: 0.35rem;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero-grid,
  .split-section,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100%, calc(100% - 1rem));
  }

  .content {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .site-header {
    top: 0.5rem;
    border-radius: 28px;
  }
}