/* ============ JUNO — DESIGN SYSTEM ============ */
:root {
  --aubergine: #3B1F3A;
  --aubergine-dark: #26142A;
  --aubergine-light: #5A3458;
  --bone: #F4EFE6;
  --bone-shadow: #E5DED0;
  --cream: #FAF7F1;
  --brass: #B08D57;
  --brass-light: #D4B078;
  --brass-dark: #8A6B3F;
  --charcoal: #1F1F1F;
  --ink: #2A2A2A;
  --muted: #6F6A63;
  --line: #D8D0C1;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.65; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ============ TYPE ============ */
.serif { font-family: var(--serif); }
.mono { font-family: var(--mono); }
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 500;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--aubergine); letter-spacing: -0.01em; }
h1 { font-size: 64px; line-height: 1.05; }
h2 { font-size: 42px; line-height: 1.15; }
h3 { font-size: 28px; line-height: 1.25; }
h4 { font-size: 20px; line-height: 1.3; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ============ LAYOUT ============ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }

.section { padding: 100px 0; }
.section-tight { padding: 60px 0; }

.divider { border-top: 1px solid var(--line); margin: 0; }

/* ============ NAV ============ */
.announcement {
  background: var(--aubergine);
  color: var(--bone);
  padding: 10px 20px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(8px);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 32px;
}
.brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.32em;
  color: var(--aubergine);
  padding-left: 0.32em;
  font-weight: 500;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.nav-right { display: flex; gap: 20px; align-items: center; }
.icon-btn {
  background: none;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cart-count {
  background: var(--aubergine);
  color: var(--bone);
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 10px;
  margin-left: 4px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary { background: var(--aubergine); color: var(--bone); }
.btn-primary:hover { background: var(--aubergine-dark); opacity: 1; }
.btn-outline { background: transparent; color: var(--aubergine); border-color: var(--aubergine); }
.btn-outline:hover { background: var(--aubergine); color: var(--bone); opacity: 1; }
.btn-ghost { background: transparent; color: var(--aubergine); padding: 10px 0; border-bottom: 1px solid var(--aubergine); }

/* ============ HERO ============ */
.hero {
  padding: 80px 0 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text .eyebrow { margin-bottom: 24px; }
.hero h1 { font-size: 72px; margin-bottom: 28px; }
.hero-text p { font-size: 17px; color: var(--muted); max-width: 480px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; }
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, var(--bone) 0%, var(--bone-shadow) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ============ EDITORIAL BLOCK ============ */
.editorial {
  background: var(--aubergine);
  color: var(--bone);
  padding: 120px 0;
  text-align: center;
}
.editorial h2 {
  color: var(--bone);
  font-size: 52px;
  max-width: 900px;
  margin: 0 auto 24px;
  font-style: italic;
  font-weight: 300;
}
.editorial .attribution {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-top: 40px;
}

/* ============ PRODUCT GRID ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  background: var(--bone);
  padding: 0;
  transition: transform 0.3s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); }
.product-card .product-img {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse 70% 50% at 50% 65%, rgba(59,31,58,0.08) 0%, rgba(59,31,58,0) 70%),
    linear-gradient(180deg, #FAF5EA 0%, var(--bone) 55%, #E5DCCB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card .product-img::before {
  content: "";
  position: absolute;
  left: 18%; right: 18%;
  bottom: 14%;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(30,15,30,0.30), rgba(30,15,30,0) 70%);
  filter: blur(3px);
  z-index: 0;
}
.product-card .product-img .vial-svg { position: relative; z-index: 1; }
.hero-visual { background: radial-gradient(ellipse 65% 50% at 50% 60%, rgba(59,31,58,0.10) 0%, rgba(59,31,58,0) 70%), linear-gradient(180deg, #FAF5EA 0%, var(--bone) 55%, #E5DCCB 100%); }
.pdp-visual { background: radial-gradient(ellipse 65% 45% at 50% 62%, rgba(59,31,58,0.10) 0%, rgba(59,31,58,0) 70%), linear-gradient(180deg, #FAF5EA 0%, var(--bone) 55%, #E5DCCB 100%); }
.product-card .product-info {
  padding: 20px 18px 24px;
}
.product-card .product-sku {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--brass-dark);
  margin-bottom: 6px;
}
.product-card .product-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--aubergine);
  margin-bottom: 4px;
}
.product-card .product-compound {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.product-card .product-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.05em;
}

/* ============ CATEGORY TILES ============ */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .categories { grid-template-columns: repeat(2, 1fr); }
}
.cat-tile {
  background: var(--bone);
  padding: 56px 40px;
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.cat-tile:hover { background: var(--aubergine); color: var(--bone); }
.cat-tile:hover h3 { color: var(--bone); }
.cat-tile:hover .eyebrow { color: var(--brass-light); }
.cat-tile .eyebrow { margin-bottom: 16px; }
.cat-tile h3 { margin-bottom: 14px; }
.cat-tile p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.cat-tile .arrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============ VIAL SVG (reusable product visual) ============ */
.vial-svg {
  width: 120px;
  height: auto;
  filter: drop-shadow(4px 8px 12px rgba(30, 15, 30, 0.15));
}

/* ============ FOOTER ============ */
footer {
  background: var(--charcoal);
  color: var(--bone);
  padding: 80px 0 40px;
  margin-top: 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 13px; color: #B8B2A8; }
.footer-col ul li a:hover { color: var(--bone); opacity: 1; }
.footer-brand {
  font-family: var(--serif);
  font-size: 38px;
  letter-spacing: 0.28em;
  color: var(--bone);
  padding-left: 0.28em;
  margin-bottom: 16px;
}
.footer-tagline { font-size: 13px; color: #B8B2A8; max-width: 320px; line-height: 1.6; margin-bottom: 24px; }

.disclaimer-block {
  border-top: 1px solid #3A3A3A;
  padding-top: 30px;
  margin-top: 40px;
  text-align: left;
}
.disclaimer-heading {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 600;
  margin-bottom: 14px;
}
.disclaimer-text {
  font-size: 11.5px;
  color: #A09A91;
  line-height: 1.7;
  max-width: 1100px;
}
.disclaimer-text strong { color: #C4BEB4; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

.footer-bottom {
  border-top: 1px solid #3A3A3A;
  padding-top: 24px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #7A756E;
}

/* ============ AGE GATE MODAL ============ */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 10, 0.96);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate.hidden { display: none; }
.age-gate-box {
  background: var(--cream);
  max-width: 560px;
  padding: 60px 56px;
  text-align: center;
  border-top: 4px solid var(--aubergine);
}
.age-gate-box .eyebrow { margin-bottom: 20px; }
.age-gate-box h2 { font-size: 34px; margin-bottom: 20px; }
.age-gate-box p { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.age-gate-box .small {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass-dark); margin-top: 24px; font-weight: 600;
}
.age-gate-buttons { display: flex; gap: 12px; justify-content: center; margin-bottom: 20px; }

/* ============ PRODUCT DETAIL ============ */
.pdp {
  padding: 60px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.pdp-visual {
  background: linear-gradient(180deg, var(--bone) 0%, var(--bone-shadow) 100%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pdp-details .sku-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass-dark);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.pdp-details h1 { font-size: 62px; margin-bottom: 12px; }
.pdp-compound { font-size: 14px; color: var(--muted); margin-bottom: 28px; font-style: italic; }
.pdp-tagline { font-size: 20px; color: var(--aubergine); font-family: var(--serif); font-style: italic; line-height: 1.4; margin-bottom: 32px; max-width: 480px; }
.pdp-price {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.pdp-specs {
  background: var(--bone);
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 3px solid var(--brass);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.spec-row:last-child { border: none; }
.spec-label { color: var(--muted); letter-spacing: 0.05em; }
.spec-value { font-family: var(--mono); color: var(--ink); }

.pdp-actions { display: flex; gap: 12px; margin: 32px 0; }
.pdp-actions .btn { flex: 1; justify-content: center; text-align: center; }

.trust-row { display: flex; gap: 32px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item .label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-dark); font-weight: 600; }
.trust-item .value { font-size: 12px; color: var(--ink); }

.pdp-description {
  max-width: 860px;
  margin: 60px auto;
  padding: 0 32px;
}
.pdp-description h3 { margin-bottom: 20px; }
.pdp-description p { color: var(--ink); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }

/* ============ FILTERS ============ */
.shop-header { padding: 60px 0 40px; }
.shop-header h1 { font-size: 56px; margin-bottom: 12px; }
.shop-header p { font-size: 15px; color: var(--muted); max-width: 640px; }

.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; }
.filters h4 { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--aubergine); margin-bottom: 14px; font-family: var(--sans); font-weight: 600; }
.filters ul { list-style: none; margin-bottom: 32px; }
.filters ul li { padding: 6px 0; font-size: 13px; color: var(--ink); cursor: pointer; }
.filters ul li.active { color: var(--aubergine); font-weight: 600; }

/* ============ TESTIMONIAL ============ */
.testimonial-block {
  padding: 80px 0;
  background: var(--bone);
}
.testimonial {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.4;
  color: var(--aubergine);
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-attribution {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 600;
}

/* ============ ADVISORS ============ */
.advisors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.advisor {
  text-align: left;
}
.advisor-img {
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, var(--bone) 0%, var(--bone-shadow) 100%);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aubergine);
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
}
.advisor h4 { margin-bottom: 4px; }
.advisor .role { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brass-dark); margin-bottom: 12px; font-weight: 600; }
.advisor p { font-size: 14px; color: var(--muted); }

/* ============ EMAIL CAPTURE ============ */
.email-capture {
  background: var(--aubergine);
  color: var(--bone);
  padding: 100px 0;
  text-align: center;
}
.email-capture h2 { color: var(--bone); margin-bottom: 16px; }
.email-capture p { color: #D4C8D3; max-width: 540px; margin: 0 auto 40px; font-size: 15px; }
.email-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}
.email-form input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--brass);
  border-right: none;
  color: var(--bone);
  padding: 16px 20px;
  font-size: 14px;
  font-family: var(--sans);
}
.email-form input::placeholder { color: #B8A5B6; }
.email-form button {
  background: var(--brass);
  color: var(--charcoal);
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============ RESEARCH HUB ============ */
.coa-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}
.coa-table th, .coa-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.coa-table th {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 600;
}
.coa-table td.mono { font-family: var(--mono); }
.coa-table .download-link {
  color: var(--aubergine);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-q {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--aubergine);
  margin-bottom: 12px;
}
.faq-a { color: var(--ink); font-size: 15px; line-height: 1.65; }

/* ============ CART ============ */
.cart-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item-img {
  aspect-ratio: 1;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-name { font-family: var(--serif); font-size: 22px; color: var(--aubergine); margin-bottom: 4px; }
.cart-item-compound { font-size: 12px; color: var(--muted); }
.cart-summary {
  background: var(--bone);
  padding: 32px;
  border-top: 3px solid var(--aubergine);
  height: fit-content;
}
.cart-summary h3 { margin-bottom: 20px; font

/* --- product photo replacements --- */
.product-photo {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.product-card .product-img .product-photo { max-height: 340px; padding: 10px; }
.hero-visual .product-photo { max-width: 380px; }
.pdp-visual .

/* --- legal / support pages --- */
.legal-content { font-size: 15px; line-height: 1.75; color: var(--ink); }
.legal-content h2 { font-family: var(--serif); font-size: 28px; margin: 40px 0 16px; color: var(--aubergine); }
.legal-content h3 { font-family: var(--serif); font-size: 20px; margin: 32px 0 12px; color: var(--ink); font-weight: 500; }
.legal-content h4 { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; margin: 28px 0 10px; color: var(--muted); }
.legal-content p { margin: 0 0 18px; }
.legal-content ul { margin: 0 0 18px 20px; padding: 0; }
.legal-content li { margin: 6px 0; }
.legal-content strong { color: var(--aubergine); font-weight: 600; }
.legal-content em { font-style: italic; color: var(--ink); }
.legal-content code { font-family: var(--mono); font-size: 13px; background: var(--bone); padding: 2px 6px; border-radius: 2px; color: var(--aubergine); }
.legal-content a { color: var(--aubergine); text-decoration: underline; text-underline-offset: 3px; }
.legal-content hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 20px 0 24px; font-size: 14px; }
.legal-content th { text-align: left; padding: 12px 14px; background: var(--bone); border-bottom: 2px solid var(--line); font-weight: 600; }
.legal-content td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal-content blockquote { border-left: 3px solid var(--brass); padding: 14px 20px; margin: 24px 0; background: var(--bone); font-size: 14px; color: var(--muted); }
.legal-content blockquote p { margin: 0 0 10px; }
.legal-content blockquote p:last-child { margin: 0; }


/* --- journal / blog --- */
.journal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 40px; }
.journal-card { display: block; transition: opacity 0.2s; }
.journal-card-lg { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.journal-img { background: var(--bone); overflow: hidden; aspect-ratio: 4/5; }
.journal-card-lg .journal-img { aspect-ratio: 5/4; }
.journal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.journal-info { padding-top: 24px; }
.journal-card-lg .journal-info { padding-top: 0; }
.journal-info .eyebrow { margin-bottom: 14px; color: var(--brass-dark); }
.journal-info h2 { font-size: 32px; line-height: 1.15; color: var(--aubergine); margin-bottom: 14px; font-weight: 400; }
.journal-card-lg .journal-info h2 { font-size: 44px; }
.journal-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.journal-info .byline { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); font-weight: 600; }

.post-header { padding: 80px 0 40px; background: var(--cream); }
.post-header h1 { font-size: 64px; line-height: 1.05; color: var(--aubergine); font-weight: 400; margin-bottom: 28px; max-width: 720px; }
.post-header .post-meta { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.post-header .post-meta .sep { margin: 0 12px; color: var(--line); }

.post-lede img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }

.post-body { max-width: 680px; margin: 0 auto; font-size: 17px; line-height: 1.85; color: var(--ink); }
.post-body p { margin: 0 0 24px; }
.post-body p.drop-cap::first-letter { font-family: var(--serif); font-size: 68px; line-height: 0.9; float: left; padding: 6px 10px 0 0; color: var(--aubergine); font-weight: 500; }
.post-body h2 { font-family: var(--serif); font-size: 34px; color: var(--aubergine); font-weight: 400; margin: 48px 0 20px; line-height: 1.2; }
.post-body em { font-style: italic; color: var(--ink); }
.post-body strong { color: var(--aubergine); font-weight: 600; }
.post-body .pull-quote {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  line-height: 1.4;
  color: var(--aubergine);
  border-left: 3px solid var(--brass);
  padding: 14px 0 14px 28px;
  margin: 40px 0;
}
.post-body .post-tag {
  margin-top: 60px;
  padding: 20px 24px;
  background: var(--bone);
  border-left: 3px solid var(--aubergine);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.post-body .post-tag a { color: var(--aubergine); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; text-transform: none; letter-spacing: 0; font-size: 14px; }

@media (max-width: 900px) {
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card-lg { grid-template-columns: 1fr; }
  .post-header h1 { font-size: 42px; }
}
