:root {
  --forest: #14382b;
  --forest-2: #25513e;
  --paper: #f3efe5;
  --paper-deep: #e9e1d1;
  --ink: #183129;
  --muted: #66736d;
  --line: rgba(20, 56, 43, .18);
}

* { box-sizing: border-box; }
html { background: var(--forest); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.5), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

main {
  min-height: 100vh;
}
.herb-card {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
}
.plate-wrap {
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #eee7d9;
  border-right: 1px solid var(--line);
}
.plate-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 90px rgba(49, 58, 43, .09);
}
.plate-number {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 7px 10px;
  background: rgba(243, 239, 229, .86);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
}
#herb-image {
  width: auto;
  max-width: 100%;
  height: 100vh;
  min-height: 100vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity .45s ease, transform .7s ease;
}
#herb-image.loaded { opacity: 1; transform: scale(1); }

.content {
  min-height: 100vh;
  padding: clamp(42px, 7vw, 112px);
  display: flex;
  flex-direction: column;
}
.eyebrow {
  margin: 0 0 42px;
  color: #8b6543;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--forest);
  font: 400 clamp(48px, 6vw, 78px)/.94 Georgia, serif;
  letter-spacing: -.045em;
}
.latin {
  margin: 15px 0 0;
  color: var(--muted);
  font: italic 18px/1.4 Georgia, serif;
}
.intro {
  margin: 34px 0 30px;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.75;
}
.facts { margin: 0; border-top: 1px solid var(--line); }
.fact {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.fact dt { color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.fact dd { margin: 0; font-size: 13px; line-height: 1.55; }
.source-row {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.source-row a { color: var(--forest); text-underline-offset: 3px; }

@media (max-width: 820px) {
  .herb-card { grid-template-columns: 1fr; }
  .plate-wrap, #herb-image { height: 52vh; min-height: 52vh; max-height: 620px; }
  #herb-image { width: 100%; object-fit: contain; }
  .plate-wrap { border-right: 0; border-bottom: 1px solid var(--line); }
  .content { min-height: 620px; }
  .eyebrow { margin-bottom: 28px; }
  .source-row { margin-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
}
