/* =====================================================
   Welyon — Homepage styles
   Direction 2 · Deep Teal / Cream
   ===================================================== */

:root {
  /* Palette */
  --bg-cream:        #F5F1EA;
  --bg-paper:        #FBF7EE;
  --teal-anchor:     #1A3D3A;
  --teal-deep:       #102826;
  --teal-pale:       #E8F0EE;
  --forest:          #1C3A2A;
  --forest-deep:     #122719;
  --gold:            #C9952A;
  --gold-soft:       #D9A746;
  --gold-deep:       #A87A1F;
  --text-warm:       #1A1410;
  --text-muted:      #6E665C;
  --text-faint:      #9A8F82;

  --on-dark:         #F2EDE3;
  --on-dark-muted:   rgba(242,237,227,0.62);
  --on-dark-faint:   rgba(242,237,227,0.16);
  --hairline-dark:   rgba(242,237,227,0.14);
  --hairline-cream:  #E5DDD0;

  /* Guide-cover hues */
  --g-iron:      #5C1A1A;
  --g-fatigue:   #1C1610;
  --g-brainfog:  #0D1B2A;
  --g-thyroid:   #0A1F12;
  --g-hives:     #1E0E08;
  --g-metabolic: #080E1A;
  --g-b12:       #120A1E;
  --g-rosacea:   #1A0D0D;

  --serif: 'Playfair Display', Georgia, 'Iowan Old Style', serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --pg-pad: 56px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-cream);
  color: var(--text-warm);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ STAGE / FRAME ============ */
.stage {
  background: var(--bg-cream);
  padding: 28px;
  min-height: 100vh;
}
.frame {
  position: relative;
  background: var(--bg-cream);
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
}

/* ============ SECTION BASE ============ */
.sec {
  position: relative;
  padding: 112px var(--pg-pad);
  isolation: isolate;
}
.sec--dark {
  background: var(--teal-anchor);
  color: var(--on-dark);
}
.sec--dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 78% 26%, rgba(201,149,42,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 6% 95%, rgba(16,40,38,0.65) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.sec--dark::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.sec--dark > * { position: relative; z-index: 1; }

.sec--forest {
  background: var(--forest);
  color: var(--on-dark);
}
.sec--forest::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 90% 30%, rgba(201,149,42,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 10% 100%, rgba(8,24,16,0.55) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.sec--forest::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none; z-index: 0;
}
.sec--forest > * { position: relative; z-index: 1; }

.sec--cream-alt { background: var(--bg-paper); }

.sec__num {
  position: absolute;
  top: 32px; left: var(--pg-pad);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}
.sec--dark .sec__num,
.sec--forest .sec__num { color: var(--on-dark-muted); }

/* ============ EYEBROW ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}
.eyebrow__rule {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0 0 24px;
  max-width: 22ch;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.section-lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 0 0;
  color: var(--text-muted);
}
.sec--dark .section-lede,
.sec--forest .section-lede { color: var(--on-dark-muted); }
.sec--dark .section-title,
.sec--forest .section-title { color: var(--on-dark); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn--primary {
  background: var(--gold);
  color: var(--text-warm);
}
.btn--primary:hover { background: var(--gold-soft); }
.btn--primary:active { background: var(--gold-deep); }
.btn--ghost {
  background: transparent;
  color: var(--on-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--on-dark-faint);
  border-radius: 0;
}
.btn--ghost:hover { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }
.btn--ghost-ink {
  background: transparent;
  color: var(--text-warm);
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-cream);
  border-radius: 0;
}
.btn--ghost-ink:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }
.btn--lg { padding: 18px 28px; font-size: 14px; }
.btn .arrow { display: inline-block; transition: transform 180ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ HEADER ============ */
.header {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px var(--pg-pad);
  gap: 32px;
}
.header__logo { display: inline-block; line-height: 0; }
.header__logo img { height: 42px; display: block; }
.nav {
  display: flex;
  gap: 40px;
  justify-self: center;
}
.nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color 200ms ease;
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--on-dark); }
.nav a.is-active { color: var(--on-dark); }
.header__end {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.header__locale {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* ============ HERO ============ */
.hero {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 80px;
  padding: 104px var(--pg-pad) 132px;
  align-items: center;
  min-height: 720px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--on-dark);
  margin: 0 0 40px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero__title .num {
  font-style: italic;
  font-weight: 700;
  color: var(--on-dark);
}
.hero__sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: var(--on-dark-muted);
  max-width: 54ch;
  margin: 0 0 52px;
}
.hero__sub strong { color: var(--on-dark); font-weight: 500; }
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.credline {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-dark);
  display: flex; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.credline__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.credline__item .tick {
  width: 13px; height: 13px; color: var(--gold); flex-shrink: 0;
}

/* ============ HERO MOTIF ============ */
.motif {
  position: relative;
  aspect-ratio: 1 / 1.04;
  width: 100%;
  max-width: 480px;
  justify-self: end;
  align-self: center;
}
.motif svg { width: 100%; height: 100%; display: block; }
.motif__caption {
  position: absolute;
  bottom: -10px; right: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  color: var(--on-dark-muted);
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-align: right;
}
.motif__caption .label {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* ============ STAT BLOCK (Diagnostic Gap) ============ */
.stat-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--hairline-cream);
  border-bottom: 1px solid var(--hairline-cream);
}
.stat {
  padding: 44px 36px 40px;
  border-right: 1px solid var(--hairline-cream);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-warm);
  margin-bottom: 12px;
}
.stat__num em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}
.stat__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-warm);
  margin-bottom: 14px;
}
.stat__sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 28ch;
}
.stat__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--gold-deep);
  border: 1px solid rgba(168,122,31,0.35);
  padding: 3px 10px;
  border-radius: 2px;
}
.stat--grades { padding-top: 36px; }
.grade-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--hairline-cream);
}
.grade-row:last-child { border-bottom: 0; }
.grade-row__dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.grade-row--strong .grade-row__dot { background: var(--gold); }
.grade-row--moderate .grade-row__dot { background: rgba(201,149,42,0.55); }
.grade-row--explore .grade-row__dot {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--gold);
}
.grade-row__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-warm);
}
.grade-row__count {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-left: auto;
}

/* ============ GUIDE GRID ============ */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.gcard {
  background: var(--bg-paper);
  border: 1px solid var(--hairline-cream);
  border-radius: 3px;
  padding: 0;
  display: flex; flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.gcard:hover { border-color: var(--text-warm); }
.gcard__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 680 / 960;
  overflow: hidden;
  background: var(--g-iron);
  container-type: inline-size;
}
.gcard__cover iframe {
  position: absolute;
  top: 0; left: 0;
  width: 680px;
  height: 960px;
  border: 0;
  transform-origin: top left;
  /* Scale set per-card by JS in Homepage.html so it adapts to
     whatever the cards measure at — see scaleGuideCovers(). */
  pointer-events: none;
}
.gcard__body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}
.gcard__eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.gcard__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--text-warm);
  margin: 0;
}
.gcard__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}
.gcard__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}
.gcard__foot {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gcard__grade {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--text-muted);
}
.gcard__grade .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 6px;
  vertical-align: 1px;
}
.gcard__grade--moderate .dot { background: rgba(201,149,42,0.55); }
.gcard__grade--explore .dot {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--gold);
}
.gcard__cta {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-warm);
  text-decoration: none;
}
.gcard__cta .arrow { transition: transform 180ms ease; display: inline-block; }
.gcard:hover .gcard__cta .arrow { transform: translateX(3px); }

/* ============ LEAD MAGNET ============ */
.leadmag {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.leadmag__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--on-dark);
  margin: 0 0 20px;
  text-wrap: balance;
}
.leadmag__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.leadmag__sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--on-dark-muted);
  margin: 0 0 36px;
  max-width: 52ch;
}
.leadmag__form {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 12px;
  max-width: 560px;
}
.leadmag__input {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--on-dark);
  background: rgba(242,237,227,0.06);
  border: 1px solid var(--hairline-dark);
  border-radius: 3px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}
.leadmag__input::placeholder { color: rgba(242,237,227,0.42); }
.leadmag__input:focus {
  border-color: var(--gold);
  background: rgba(242,237,227,0.10);
}
.leadmag__legal {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(242,237,227,0.42);
  letter-spacing: 0.04em;
}
.leadmag__art {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
}
.leadmag__art svg { width: 100%; height: 100%; display: block; }

/* ============ HOW IT WORKS ============ */
.howit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--hairline-cream);
}
.step {
  padding: 48px 36px 0;
  border-right: 1px solid var(--hairline-cream);
  position: relative;
}
.step:last-child { border-right: 0; }
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.step__icon {
  width: 72px; height: 72px;
  margin-bottom: 28px;
  color: var(--teal-anchor);
}
.step__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--text-warm);
  margin: 0 0 14px;
}
.step__title em { font-style: italic; font-weight: 400; color: var(--gold-deep); }
.step__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.step__meta {
  margin-top: 20px;
  padding: 14px 0 0;
  border-top: 1px dashed var(--hairline-cream);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============ CREDIBILITY ============ */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--hairline-dark);
}
.cred {
  padding: 44px 48px 44px 0;
  border-bottom: 1px solid var(--hairline-dark);
  position: relative;
}
.cred:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--hairline-dark);
}
.cred:nth-child(even) { padding-left: 48px; }
.cred:nth-last-child(-n+2) { border-bottom: 0; }
.cred__eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cred__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.18;
  color: var(--on-dark);
  margin: 0 0 14px;
}
.cred__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.cred__body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-dark-muted);
  margin: 0;
}
.cred__status {
  display: inline-block;
  margin-top: 18px;
  padding: 3px 10px;
  border: 1px solid rgba(201,149,42,0.45);
  border-radius: 2px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--gold);
}
.evidence-grades {
  display: grid; gap: 8px;
  margin-top: 14px;
}
.eg-row {
  display: grid;
  grid-template-columns: 12px 100px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--on-dark-muted);
}
.eg-row__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  align-self: center;
}
.eg-row--moderate .eg-row__dot { background: rgba(201,149,42,0.55); }
.eg-row--explore .eg-row__dot {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--gold);
}
.eg-row__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--on-dark);
}

/* ============ PRACTITIONER ============ */
.prac {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
  padding: 40px 0 0;
  border-top: 1px solid var(--hairline-cream);
}
.prac__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--text-warm);
  margin: 0 0 8px;
}
.prac__title em { font-style: italic; font-weight: 400; color: var(--gold-deep); }
.prac__body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 64ch;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--teal-deep);
  color: var(--on-dark);
  padding: 72px var(--pg-pad) 40px;
  position: relative;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline-dark);
}
.footer__brand img { height: 48px; display: block; margin-bottom: 18px; }
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--on-dark-muted);
  max-width: 36ch;
}
.footer__col h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color 180ms ease;
}
.footer__col a:hover { color: var(--on-dark); }
.footer__discl {
  padding-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 48px;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(242,237,227,0.42);
}
.footer__discl p { margin: 0 0 8px; }
.footer__bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-dark);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  color: rgba(242,237,227,0.45);
  letter-spacing: 0.06em;
}

/* ============ STAMPS / RULES ============ */
.stamp {
  position: absolute;
  bottom: 28px; left: var(--pg-pad);
  z-index: 5;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.stamp__rule {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--hairline-dark);
}
.stamp__right {
  position: absolute;
  bottom: 28px; right: var(--pg-pad);
  z-index: 5;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--on-dark-muted);
}
