:root {
  --bg: #faf6ee;
  --paper: #ffffff;
  --ink: #1f2418;
  --ink-soft: #5c6452;
  --rule: #d4d8c2;
  --primary: #6a7a44;
  --primary-dark: #4a5a28;
  --amber: #c2904a;
  --rose: #b06876;
  --serif: 'Iowan Old Style', 'Hoefler Text', Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.75; -webkit-font-smoothing: antialiased; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--amber); }

header.herbal { padding: 28px 0; background: var(--bg); border-bottom: 1px solid var(--rule); }
header.herbal .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.brand { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--primary); font-weight: 400; text-decoration: none; letter-spacing: 0.01em; display: inline-flex; align-items: center; gap: 8px; }
.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
header.herbal nav a { color: var(--ink); margin-left: 26px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; text-decoration: none; }
header.herbal nav a:hover { color: var(--primary); }

.herbal-hero { padding: 80px 0 64px; text-align: center; position: relative; }
.herbal-hero::before, .herbal-hero::after { content: ''; position: absolute; width: 60px; height: 80px; background: var(--primary); border-radius: 100% 0; opacity: 0.15; }
.herbal-hero::before { top: 40px; left: 8%; transform: rotate(-20deg); }
.herbal-hero::after { bottom: 40px; right: 8%; transform: rotate(160deg); background: var(--amber); }
.herbal-hero .container { position: relative; z-index: 1; }
.eyebrow { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--amber); margin-bottom: 14px; }
.herbal-hero h1 { font-family: var(--serif); font-style: italic; font-size: 52px; line-height: 1.15; color: var(--ink); margin-bottom: 22px; font-weight: 400; max-width: 18ch; margin-left: auto; margin-right: auto; letter-spacing: -0.005em; }
.herbal-hero .lede { font-size: 18px; color: var(--ink-soft); max-width: 56ch; margin: 0 auto 28px; line-height: 1.8; }
.btn-leaf { display: inline-block; padding: 12px 28px; background: var(--primary); color: var(--paper); text-decoration: none; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.btn-leaf:hover { background: var(--primary-dark); color: var(--paper); }

.tea-band { padding: 72px 0; background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section-eyebrow { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--amber); text-align: center; margin-bottom: 8px; }
.section-title { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--ink); text-align: center; margin-bottom: 40px; font-weight: 400; }
.tea-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.tea { text-align: center; }
.tea-jar { width: 96px; aspect-ratio: 3/4; background: var(--primary); border-radius: 8px 8px 16px 16px; margin: 0 auto 18px; position: relative; }
.tea-jar::before { content: ''; position: absolute; top: -8px; left: -4px; right: -4px; height: 12px; background: var(--ink); border-radius: 4px; }
.tea-jar::after { content: ''; position: absolute; top: 30%; left: 16%; right: 16%; height: 50%; background: var(--paper); display: flex; align-items: center; justify-content: center; }
.tea:nth-child(2) .tea-jar { background: var(--amber); }
.tea:nth-child(3) .tea-jar { background: var(--rose); }
.tea:nth-child(4) .tea-jar { background: var(--primary-dark); }
.tea h3 { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--ink); margin-bottom: 4px; font-weight: 400; }
.tea .latin { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; }
.tea p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; padding: 0 8px; }
.tea .price { font-family: var(--serif); font-size: 14px; color: var(--primary); margin-top: 10px; }

.tradition { padding: 80px 0; }
.tradition .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.tradition h2 { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--ink); margin-bottom: 18px; font-weight: 400; line-height: 1.3; }
.tradition p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.85; }
.virtue-list { background: var(--paper); padding: 28px 32px; border: 1px solid var(--rule); }
.virtue-list h3 { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--primary); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--rule); font-weight: 400; }
.virtue-list ul { list-style: none; padding: 0; }
.virtue-list li { padding: 8px 0; padding-left: 24px; position: relative; font-size: 14px; color: var(--ink-soft); }
.virtue-list li::before { content: '🌿'; position: absolute; left: 0; font-size: 12px; }

.contact { padding: 72px 0; background: var(--paper); text-align: center; border-top: 1px solid var(--rule); }
.contact h2 { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--ink); margin-bottom: 16px; font-weight: 400; }
.contact p { color: var(--ink-soft); max-width: 500px; margin: 0 auto 24px; }

footer { padding: 32px 0; text-align: center; color: var(--ink-soft); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; border-top: 1px solid var(--rule); }
footer a { color: var(--primary); }

article.page { padding: 64px 0; max-width: 1080px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
article.page h1 { font-family: var(--serif); font-style: italic; font-size: 40px; color: var(--primary); margin-bottom: 24px; line-height: 1.2; font-weight: 400; }
article.page h2 { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink); margin-top: 36px; margin-bottom: 12px; font-weight: 400; }

/* Site images */
.hero-img { width: 100%; max-width: 900px; height: auto; display: block; margin: 32px auto 0; border-radius: 6px; }
.imagery { padding: 0; }
.full-img { width: 100%; height: auto; display: block; max-height: 420px; object-fit: cover; border-radius: 6px; margin: 0 auto; }
.page-img { width: 100%; max-height: 420px; object-fit: cover; display: block; margin: 24px auto; border-radius: 4px; }

body > header:not([class]) { padding: 24px 0; border-bottom: 1px solid var(--rule); }
body > header:not([class]) .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
body > header:not([class]) .brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--primary); text-decoration: none; }
body > header:not([class]) .brand-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--amber); }
body > header:not([class]) nav { display: flex; gap: 26px; }
body > header:not([class]) nav a { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); text-decoration: none; }

@media (max-width: 800px) {
  .herbal-hero h1 { font-size: 34px; }
  .tradition .container { grid-template-columns: 1fr; gap: 24px; }
  header.herbal nav a { margin-left: 14px; }
}
/* v5 */
