
:root {
  --soot: #18140f;
  --soot-2: #211a16;
  --soot-3: #2c231e;
  --paper: #d8c8a7;
  --paper-light: #eadfc8;
  --paper-dark: #b8a583;
  --ink: #241c18;
  --muted-ink: #625345;
  --oxblood: #672836;
  --oxblood-dark: #3f1720;
  --moss: #38463a;
  --brass: #8f7445;
  --brass-light: #b7975d;
  --chalk: #eee2c9;
  --line: rgba(49, 37, 28, 0.35);
  --light-line: rgba(235, 222, 195, 0.25);
  --display: "IM Fell English SC", Georgia, serif;
  --body: "Crimson Pro", Georgia, serif;
  --shadow: 0 30px 70px rgba(20, 13, 8, 0.27);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--soot);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::selection {
  background: var(--oxblood);
  color: var(--chalk);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 999;
  background: var(--paper-light);
  color: var(--ink);
  padding: 12px 16px;
  border: 1px solid var(--ink);
}

.skip-link:focus {
  top: 18px;
}

.shop-strip {
  min-height: 34px;
  background: var(--oxblood-dark);
  color: #d7c49f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 7px 20px 6px;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-align: center;
  border-bottom: 1px solid rgba(216, 200, 167, 0.22);
}

.shop-strip .diamond {
  font-size: 0.45rem;
  opacity: 0.7;
}

.site-header {
  min-height: 82px;
  padding: 0 5vw;
  color: var(--chalk);
  background:
    linear-gradient(rgba(24, 20, 15, 0.97), rgba(24, 20, 15, 0.97)),
    repeating-linear-gradient(90deg, transparent 0 6px, rgba(255,255,255,.015) 7px 8px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 200, 167, 0.18);
}

.brand-lockup {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  font-family: var(--display);
  letter-spacing: 0.08em;
  position: relative;
}

.brand-small {
  font-size: 0.98rem;
}

.brand-amp {
  font-family: var(--body);
  color: var(--brass-light);
  font-size: 1.3rem;
  font-style: italic;
}

.brand-crescent {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--brass-light);
  border-radius: 50%;
  position: relative;
  margin-right: 5px;
  transform: translateY(4px);
}

.brand-crescent::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--soot);
  left: 5px;
  top: 1px;
}

.site-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.site-nav a {
  text-decoration: none;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 50%;
  right: 50%;
  bottom: -7px;
  background: var(--brass-light);
  transition: left .2s ease, right .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  left: 0;
  right: 0;
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 86px 24px 90px;
  color: var(--chalk);
  background:
    radial-gradient(circle at 50% 35%, rgba(103, 40, 54, 0.16), transparent 26rem),
    linear-gradient(rgba(20, 16, 13, .96), rgba(20, 16, 13, .99)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 5px);
  overflow: hidden;
  border-bottom: 7px solid var(--oxblood-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(216, 200, 167, 0.24);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(143, 116, 69, 0.18);
  pointer-events: none;
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stars i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #dacba9;
  position: absolute;
  opacity: .55;
  box-shadow: 0 0 9px rgba(218,203,169,.45);
}

.hero-stars i:nth-child(1){left:13%;top:19%}
.hero-stars i:nth-child(2){left:23%;top:72%;width:2px;height:2px}
.hero-stars i:nth-child(3){left:31%;top:14%;width:2px;height:2px}
.hero-stars i:nth-child(4){left:42%;top:82%}
.hero-stars i:nth-child(5){left:58%;top:14%;width:2px;height:2px}
.hero-stars i:nth-child(6){left:68%;top:77%;width:2px;height:2px}
.hero-stars i:nth-child(7){left:79%;top:24%}
.hero-stars i:nth-child(8){left:89%;top:62%;width:2px;height:2px}
.hero-stars i:nth-child(9){left:8%;top:54%;width:2px;height:2px}
.hero-stars i:nth-child(10){left:93%;top:37%}

.hero-botanical {
  position: absolute;
  width: 150px;
  top: 112px;
  bottom: 70px;
  color: rgba(190, 163, 108, .33);
}

.hero-botanical svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-botanical path,
.hero-botanical circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.hero-botanical-left {
  left: 5vw;
}

.hero-botanical-right {
  right: 5vw;
}

.hero-inner {
  width: min(890px, 86vw);
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-kicker,
.folio {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #ad9465;
}

.hero-mark {
  width: 165px;
  margin: 6px auto 0;
  color: #ad9465;
}

.hero-mark svg {
  display: block;
  width: 100%;
}

.hero-mark path,
.hero-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.hero-mark .moth-wing {
  fill: rgba(143, 116, 69, .04);
}

.hero h1 {
  margin: -3px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .14em;
  font-family: var(--display);
  font-size: clamp(4.9rem, 10.6vw, 9.6rem);
  line-height: .78;
  letter-spacing: .025em;
  font-weight: 400;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}

.hero h1 b {
  color: var(--brass-light);
  font-family: var(--body);
  font-size: .54em;
  font-style: italic;
  font-weight: 400;
  transform: translateY(.05em);
}

.hero-deck {
  width: min(660px, 92%);
  margin: 34px auto 0;
  color: #c9bda3;
  font-size: clamp(1.2rem, 2vw, 1.47rem);
  line-height: 1.45;
  font-style: italic;
}

.hero-links {
  margin: 42px 0 0;
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}

.ink-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--chalk);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding: 0 3px 7px;
  font-family: var(--display);
  font-size: .79rem;
  letter-spacing: .15em;
}

.ink-link span {
  color: var(--brass-light);
  transition: transform .2s ease;
}

.ink-link:hover span {
  transform: translateX(4px);
}

.phase-ornament {
  margin: 64px auto 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  color: #aa966f;
  font-size: 1.15rem;
  letter-spacing: .08em;
}

.paper-section {
  position: relative;
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, rgba(52, 40, 30, .027) 1px, transparent 1px),
    linear-gradient(rgba(52, 40, 30, .025) 1px, transparent 1px),
    radial-gradient(circle at 19% 33%, rgba(92, 72, 53, .065) 0 1px, transparent 1.5px),
    radial-gradient(circle at 71% 68%, rgba(92, 72, 53, .05) 0 1px, transparent 1.5px);
  background-size: 7px 7px, 11px 11px, 23px 23px, 31px 31px;
}

.almanac-section {
  padding: 120px max(6vw, 28px) 115px;
  border-top: 1px solid rgba(255,255,255,.3);
  overflow: hidden;
}

.side-label {
  position: absolute;
  top: 400px;
  font-family: var(--display);
  font-size: .64rem;
  letter-spacing: .2em;
  color: rgba(55, 43, 34, .52);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.side-label-left {
  left: 2.1vw;
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 65px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  grid-template-areas:
    "folio title"
    ". copy";
  gap: 6px 70px;
  align-items: end;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 34px;
}

.section-heading .folio {
  grid-area: folio;
  align-self: start;
  margin-top: 8px;
  color: var(--oxblood);
}

.section-heading h2 {
  grid-area: title;
}

.section-heading .intro {
  grid-area: copy;
  max-width: 640px;
  margin: 17px 0 0;
  color: var(--muted-ink);
  font-size: 1.08rem;
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.8rem, 7.2vw, 7.2rem);
  line-height: .82;
  letter-spacing: .005em;
}

h2 i {
  font-family: var(--body);
  font-weight: 400;
  text-transform: none;
  font-size: .82em;
}

.astronomy-error {
  width: min(1180px, 100%);
  margin: -30px auto 45px;
  padding: 17px 20px;
  border: 1px solid var(--oxblood);
  color: var(--oxblood-dark);
  background: rgba(103, 40, 54, .06);
}

.almanac-spread {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  border: 1px solid var(--ink);
  min-height: 690px;
  box-shadow: var(--shadow);
}

.moon-plate {
  position: relative;
  min-width: 0;
  padding: 28px 34px 35px;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.13), transparent 45%),
    rgba(232, 221, 197, .42);
}

.plate-number {
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: var(--display);
  font-size: .63rem;
  letter-spacing: .18em;
}

.moon-ring {
  width: min(440px, 86%);
  aspect-ratio: 1;
  position: relative;
  border: 1px solid var(--ink);
  border-radius: 50%;
  padding: 26px;
  display: grid;
  place-items: center;
}

.moon-ring::before,
.moon-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.moon-ring::before {
  inset: 10px;
  border: 1px dotted rgba(36,28,24,.42);
}

.moon-ring::after {
  inset: -14px;
  border: 1px solid rgba(36,28,24,.15);
}

#moon-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  filter: sepia(.15) contrast(1.04);
}

.moon-ring-mark {
  position: absolute;
  font-family: var(--display);
  font-size: .62rem;
  color: var(--muted-ink);
  background: var(--paper);
  padding: 0 5px;
}

.mark-n { top: -7px; left: 50%; transform: translateX(-50%); }
.mark-s { bottom: -7px; left: 50%; transform: translateX(-50%); }
.mark-e { right: -6px; top: 50%; transform: translateY(-50%); }
.mark-w { left: -7px; top: 50%; transform: translateY(-50%); }

.plate-caption {
  width: min(430px, 92%);
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 8px 0 7px;
  font-family: var(--display);
  letter-spacing: .08em;
}

.plate-caption strong {
  font-weight: 400;
  font-size: .95rem;
}

.plate-caption span {
  color: var(--oxblood);
  font-size: .72rem;
}

.plate-caption-sub {
  width: min(430px, 92%);
  padding-top: 7px;
  color: var(--muted-ink);
  font-size: .79rem;
  font-style: italic;
  text-align: right;
}

.moon-ledger {
  padding: 36px 42px 40px;
  background: rgba(216,200,167,.74);
}

.moon-ledger-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 3px double var(--ink);
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .15em;
}

.moon-ledger-title span:last-child {
  color: var(--oxblood);
  text-align: right;
}

.moon-facts {
  margin: 19px 0 0;
}

.moon-facts > div {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 20px;
  padding: 11px 2px 9px;
  border-bottom: 1px dotted rgba(36,28,24,.45);
}

.moon-facts dt {
  color: var(--muted-ink);
  font-style: italic;
}

.moon-facts dd {
  margin: 0;
  text-align: right;
  font-family: var(--display);
  font-size: .84rem;
  letter-spacing: .05em;
}

.moon-tradition {
  margin-top: 27px;
  border: 1px solid var(--ink);
  padding: 20px 22px 18px;
  position: relative;
  background: rgba(239,228,203,.29);
}

.moon-tradition::before {
  content: "☾";
  position: absolute;
  top: -18px;
  right: 18px;
  background: var(--paper);
  padding: 0 7px;
  color: var(--oxblood);
  font-size: 1.5rem;
}

.annotation {
  display: block;
  margin-bottom: 9px;
  color: var(--oxblood);
  font-family: var(--display);
  font-size: .65rem;
  letter-spacing: .16em;
}

.moon-tradition p {
  margin: 0 0 8px;
  font-size: 1.03rem;
  font-style: italic;
}

.moon-tradition small {
  display: block;
  color: var(--muted-ink);
  line-height: 1.4;
}

.local-sky {
  width: min(1180px, 100%);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: .74fr 1.1fr auto;
  grid-template-areas:
    "heading explainer button"
    "facts facts status";
  align-items: center;
  gap: 28px 40px;
  border-top: 3px double var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 32px 0 30px;
}

.local-sky-heading {
  grid-area: heading;
  display: flex;
  align-items: center;
  gap: 15px;
}

.local-sky-heading .ornament {
  font-size: 2.3rem;
  color: var(--oxblood);
}

.local-sky-heading .folio {
  margin: 0 0 3px;
  color: var(--oxblood);
}

.local-sky-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.local-explainer {
  grid-area: explainer;
  margin: 0;
  color: var(--muted-ink);
}

.seal-button {
  grid-area: button;
  border: 1px solid var(--ink);
  background: var(--oxblood-dark);
  color: var(--chalk);
  padding: 12px 17px 11px;
  cursor: pointer;
  font-family: var(--display);
  letter-spacing: .08em;
  font-size: .72rem;
  box-shadow: 4px 4px 0 rgba(36,28,24,.18);
}

.seal-button:hover,
.seal-button:focus-visible {
  background: var(--oxblood);
}

.seal-icon {
  margin-right: 6px;
}

.location-status {
  grid-area: status;
  text-align: right;
  color: var(--muted-ink);
  font-size: .78rem;
  font-style: italic;
}

.local-facts {
  grid-area: facts;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(36,28,24,.25);
}

.local-facts > div {
  padding: 16px 18px 5px 0;
  border-right: 1px solid rgba(36,28,24,.25);
}

.local-facts > div:not(:first-child) {
  padding-left: 18px;
}

.local-facts > div:last-child {
  border-right: 0;
}

.local-facts dt {
  color: var(--muted-ink);
  font-style: italic;
  font-size: .83rem;
}

.local-facts dd {
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: 1rem;
}

.method-note {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 30px;
  color: var(--muted-ink);
  font-size: .82rem;
}

.method-note > span {
  font-family: var(--display);
  letter-spacing: .14em;
  color: var(--oxblood);
}

.method-note p {
  margin: 0;
}

.ink-section {
  position: relative;
  color: var(--chalk);
  background:
    linear-gradient(rgba(27, 21, 17, .97), rgba(24, 19, 15, .99)),
    repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.03) 0 1px, transparent 1px 4px);
}

.tarot-section {
  padding: 118px max(6vw, 28px) 105px;
  overflow: hidden;
}

.tarot-section::before,
.tarot-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(183,151,93,.11);
  border-radius: 50%;
  pointer-events: none;
}

.tarot-section::before {
  left: -230px;
  top: 170px;
}

.tarot-section::after {
  right: -230px;
  bottom: 110px;
}

.tarot-heading {
  width: min(1180px, 100%);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px 70px;
  align-items: end;
}

.tarot-heading .folio {
  grid-column: 1 / -1;
  margin-bottom: -2px;
  color: var(--brass-light);
}

.folio.light {
  color: var(--brass-light);
}

.tarot-heading h2 {
  color: #eee2c9;
}

.tarot-heading > p:last-child {
  max-width: 500px;
  margin: 0 0 5px;
  color: #b9ab91;
  font-size: 1.05rem;
}

.spread-switcher {
  width: min(1180px, 100%);
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  padding: 11px 0 10px;
}

.spread-switcher > span {
  color: var(--brass);
  font-size: .65rem;
}

.spread-option {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8f826e;
  font-family: var(--display);
  letter-spacing: .12em;
  font-size: .69rem;
  cursor: pointer;
}

.spread-option.active {
  color: var(--chalk);
  text-decoration: underline;
  text-decoration-color: var(--brass-light);
  text-underline-offset: 5px;
}

.tarot-table {
  width: min(1180px, 100%);
  min-height: 640px;
  margin: 0 auto;
  padding: 46px 52px 45px;
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: 65px;
  align-items: center;
  position: relative;
  border: 1px solid rgba(221,202,165,.42);
  box-shadow: inset 0 0 0 9px rgba(143,116,69,.055), 0 40px 100px rgba(0,0,0,.25);
  background:
    linear-gradient(rgba(72, 29, 39, .82), rgba(59, 25, 33, .84)),
    repeating-linear-gradient(86deg, rgba(0,0,0,.1) 0 2px, transparent 2px 13px);
}

.tarot-table::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px solid rgba(221,202,165,.14);
  pointer-events: none;
}

.deck-object {
  height: 470px;
  position: relative;
  display: grid;
  place-items: center;
}

.deck-shadow {
  position: absolute;
  width: 280px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0,0,0,.33);
  filter: blur(18px);
  bottom: 32px;
  transform: rotate(-5deg);
}

.deck-card {
  position: absolute;
  width: 245px;
  height: 390px;
  border: 1px solid #b39762;
  background: #16110f;
}

.deck-card-3 {
  transform: translate(-13px, 8px) rotate(-7deg);
  opacity: .65;
}

.deck-card-2 {
  transform: translate(8px, 4px) rotate(3deg);
}

.deck-card-1 {
  transform: rotate(-2deg);
  padding: 10px;
  box-shadow: 0 28px 60px rgba(0,0,0,.4);
}

.card-back-pattern {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183,151,93,.52);
  background:
    radial-gradient(circle at center, transparent 0 19%, rgba(183,151,93,.12) 19.5% 20%, transparent 20.5% 35%, rgba(183,151,93,.08) 35.5% 36%, transparent 36.5%),
    repeating-conic-gradient(from 0deg, rgba(183,151,93,.08) 0 3deg, transparent 3deg 15deg);
}

.back-eye {
  width: 112px;
  height: 70px;
  border: 1px solid #b39762;
  border-radius: 50% 0 50% 0;
  transform: rotate(45deg);
  display: grid;
  place-items: center;
}

.back-eye > span {
  transform: rotate(-45deg);
  color: #d6bc85;
  font-size: 1.5rem;
}

.deck-label {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #c4b18e;
  text-align: center;
  font-family: var(--display);
  font-size: .64rem;
  line-height: 1.4;
  letter-spacing: .13em;
}

.tarot-reading {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.one-card-reading {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  align-items: center;
}

.drawn-card {
  width: 270px;
  height: 440px;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2,.74,.24,1);
}

.drawn-card.is-face-down {
  transform: rotateY(180deg);
}

.drawn-card-face,
.drawn-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border: 1px solid #7a5f3b;
  box-shadow: 0 24px 55px rgba(0,0,0,.32);
}

.drawn-card-face {
  color: var(--ink);
  background:
    radial-gradient(circle at 51% 42%, rgba(103,40,54,.08), transparent 45%),
    var(--paper-light);
  padding: 18px 18px 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.drawn-card-face::before,
.drawn-card-face::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.drawn-card-face::before {
  inset: 9px;
  border: 1px solid rgba(74,55,38,.5);
}

.drawn-card-face::after {
  inset: 16px;
  border: 1px dotted rgba(74,55,38,.23);
}

.drawn-card-back {
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at center, rgba(183,151,93,.1), transparent 40%),
    #16110f;
  padding: 12px;
  display: grid;
  place-items: center;
}

.drawn-card-back::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(183,151,93,.58);
}

.drawn-card-back .back-eye {
  position: relative;
  z-index: 2;
}

.card-number {
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .13em;
  position: relative;
  z-index: 2;
}

.card-sigil {
  flex: 1;
  display: grid;
  place-items: center;
  color: var(--oxblood);
  font-family: Georgia, serif;
  font-size: 5.8rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.card-sigil::before {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  border: 1px solid rgba(36,28,24,.24);
  border-radius: 50%;
}

.drawn-card-face h3 {
  margin: 0 0 3px;
  max-width: 220px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.05;
  position: relative;
  z-index: 2;
}

.card-suit {
  color: var(--muted-ink);
  font-size: .77rem;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.card-orientation {
  margin-top: 10px;
  font-family: var(--display);
  font-size: .58rem;
  letter-spacing: .17em;
  color: var(--oxblood);
  position: relative;
  z-index: 2;
}

.reading-copy {
  padding-right: 10px;
}

.reading-label {
  margin: 0 0 8px;
  color: var(--brass-light);
  font-family: var(--display);
  font-size: .67rem;
  letter-spacing: .17em;
}

.reading-copy h3 {
  margin: 0 0 8px;
  color: var(--chalk);
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  font-weight: 400;
}

.keywords {
  margin: 0 0 19px;
  color: #c7ab77;
  font-style: italic;
  font-size: 1.08rem;
}

.meaning {
  margin: 0;
  color: #c7baa2;
  font-size: 1.05rem;
}

.reflection-question {
  margin: 25px 0 0;
  border-left: 1px solid var(--brass);
  padding-left: 18px;
  color: #efe1c6;
  font-style: italic;
  font-size: 1.05rem;
}

.three-card-reading {
  min-height: 470px;
}

.spread-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.spread-card {
  min-width: 0;
}

.spread-position {
  margin-bottom: 7px;
  color: #c9b281;
  font-family: var(--display);
  font-size: .6rem;
  letter-spacing: .15em;
  text-align: center;
}

.mini-card {
  height: 295px;
  padding: 17px 14px;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid #8a6d42;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 18px 36px rgba(0,0,0,.25);
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(69,50,34,.4);
}

.mini-card .mini-number,
.mini-card .mini-sigil,
.mini-card h4,
.mini-card .mini-orientation {
  position: relative;
  z-index: 2;
}

.mini-number {
  font-family: var(--display);
  font-size: .57rem;
}

.mini-sigil {
  flex: 1;
  display: grid;
  place-items: center;
  color: var(--oxblood);
  font-size: 3.1rem;
}

.mini-card h4 {
  margin: 0 0 2px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1;
}

.mini-orientation {
  font-family: var(--display);
  font-size: .5rem;
  letter-spacing: .12em;
  color: var(--oxblood);
}

.spread-meaning {
  margin: 11px 0 0;
  color: #c7baa2;
  font-size: .82rem;
  line-height: 1.35;
}

.spread-summary {
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(221,202,165,.26);
  color: #d9c8a9;
  font-style: italic;
}

.tarot-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ritual-button {
  min-width: 200px;
  border: 1px solid #c4a466;
  background: var(--chalk);
  color: var(--ink);
  padding: 12px 16px 11px 18px;
  cursor: pointer;
  display: inline-flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-family: var(--display);
  letter-spacing: .09em;
  font-size: .69rem;
  box-shadow: 5px 5px 0 rgba(0,0,0,.18);
}

.ritual-button:hover,
.ritual-button:focus-visible {
  background: #f6ebd3;
}

.ritual-button i {
  color: var(--oxblood);
  font-style: normal;
}

.text-button {
  border: 0;
  border-bottom: 1px solid rgba(221,202,165,.4);
  background: transparent;
  color: #b6a78f;
  padding: 0 0 3px;
  cursor: pointer;
  font-size: .75rem;
  font-style: italic;
}

.text-button:hover {
  color: var(--chalk);
}

.tarot-footnote {
  width: min(1180px, 100%);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  color: #968873;
}

.tarot-footnote > span {
  width: 53px;
  height: 53px;
  border: 1px solid rgba(183,151,93,.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c2a66d;
  font-family: var(--display);
}

.tarot-footnote p {
  margin: 0;
  max-width: 720px;
  font-size: .78rem;
}

.daily-section {
  padding: 112px max(6vw, 28px);
}

.daily-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 78px;
  align-items: center;
}

.daily-heading {
  position: relative;
  min-height: 430px;
}

.daily-heading .folio {
  color: var(--oxblood);
}

.daily-heading h2 {
  margin-top: 18px;
  font-size: clamp(3.8rem, 6.5vw, 6.7rem);
}

.daily-marginalia {
  position: absolute;
  width: 210px;
  right: 4%;
  bottom: -15px;
  color: rgba(103,40,54,.26);
  transform: rotate(-10deg);
}

.daily-marginalia svg {
  width: 100%;
}

.daily-marginalia circle,
.daily-marginalia path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.daily-sheet {
  width: 100%;
  min-height: 520px;
  position: relative;
  padding: 48px 55px 35px;
  background:
    linear-gradient(rgba(241,230,205,.75), rgba(241,230,205,.75)),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(72,55,41,.07) 28px 29px);
  border: 1px solid var(--ink);
  box-shadow: 12px 14px 0 rgba(67,50,36,.11), var(--shadow);
  transform: rotate(.65deg);
}

.daily-sheet::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(36,28,24,.34);
  pointer-events: none;
}

.sheet-date,
.sheet-kicker,
.daily-sheet blockquote,
.writing-lines,
.sheet-footer {
  position: relative;
  z-index: 2;
}

.sheet-date {
  text-align: right;
  color: var(--muted-ink);
  font-family: var(--display);
  font-size: .62rem;
  letter-spacing: .13em;
}

.sheet-kicker {
  margin: 35px 0 12px;
  color: var(--oxblood);
  font-family: var(--display);
  font-size: .66rem;
  letter-spacing: .17em;
}

.daily-sheet blockquote {
  margin: 0;
  max-width: 650px;
  font-family: var(--body);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.12;
  font-style: italic;
}

.writing-lines {
  margin-top: 45px;
  display: grid;
  gap: 21px;
}

.writing-lines span {
  display: block;
  height: 1px;
  background: rgba(36,28,24,.29);
}

.sheet-footer {
  margin-top: 39px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-ink);
  font-family: var(--display);
  font-size: .55rem;
  letter-spacing: .12em;
}

.shop-section {
  padding: 110px max(6vw, 28px);
  color: var(--chalk);
  background:
    linear-gradient(rgba(56,70,58,.95), rgba(48,60,49,.98)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0 2px, transparent 2px 11px);
  border-top: 7px solid #283229;
}

.shop-frame {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 55px 68px;
  border: 1px solid rgba(238,226,201,.35);
  outline: 1px solid rgba(183,151,93,.18);
  outline-offset: -13px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  position: relative;
}

.shop-frame::before,
.shop-frame::after {
  position: absolute;
  font-family: var(--display);
  color: rgba(238,226,201,.35);
  background: var(--moss);
  padding: 0 9px;
}

.shop-frame::before {
  content: "✦";
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.shop-frame::after {
  content: "☾";
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
}

.shop-copy h2 {
  color: #f0e3c9;
  font-size: clamp(4rem, 6vw, 6.5rem);
}

.shop-copy > p:not(.folio) {
  max-width: 610px;
  color: #c8bea9;
  font-size: 1.05rem;
}

.shop-links {
  margin-top: 30px;
  display: grid;
  max-width: 580px;
  border-top: 1px solid rgba(238,226,201,.35);
}

.shop-link {
  display: grid;
  grid-template-columns: .8fr 1.6fr auto;
  align-items: baseline;
  gap: 18px;
  color: var(--chalk);
  text-decoration: none;
  padding: 13px 0 11px;
  border-bottom: 1px solid rgba(238,226,201,.27);
}

.shop-link > span {
  font-family: var(--display);
  font-size: .76rem;
  letter-spacing: .12em;
}

.shop-link small {
  color: #9e9789;
  font-style: italic;
}

.shop-link b {
  color: var(--brass-light);
}

.disabled-link {
  cursor: default;
  opacity: .78;
}

.journal-object {
  width: min(340px, 90%);
  aspect-ratio: .74;
  position: relative;
  justify-self: center;
  transform: rotate(3deg);
  filter: drop-shadow(0 30px 35px rgba(0,0,0,.28));
}

.journal-pages {
  position: absolute;
  inset: 8px -9px -8px 12px;
  border: 1px solid rgba(53,39,29,.5);
  background: #b9a98a;
  transform: rotate(1.4deg);
}

.journal-cover {
  position: absolute;
  inset: 0;
  padding: 38px 31px 30px;
  color: #251d19;
  background:
    linear-gradient(rgba(226,211,180,.91), rgba(226,211,180,.91)),
    repeating-radial-gradient(circle at 30% 20%, rgba(50,35,25,.08) 0 1px, transparent 1px 4px);
  border: 1px solid #2c2119;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.journal-cover::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(44,33,25,.55);
}

.journal-cover::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dotted rgba(44,33,25,.27);
}

.journal-cover > * {
  position: relative;
  z-index: 2;
}

.journal-small {
  font-family: var(--display);
  font-size: .57rem;
  letter-spacing: .15em;
}

.journal-cover h3 {
  margin: 36px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: .87;
  font-weight: 400;
}

.journal-moon {
  color: var(--oxblood);
  letter-spacing: .28em;
  margin-left: .28em;
  font-size: 1.5rem;
}

.journal-cover p {
  margin: 25px 0 22px;
  font-family: var(--display);
  font-size: .57rem;
  letter-spacing: .08em;
}

.journal-rule {
  width: 72%;
  border-top: 1px solid var(--ink);
  margin-top: auto;
}

.top-rule {
  margin: 0 0 auto;
}

.journal-brand {
  margin-top: 9px;
  font-family: var(--display);
  font-size: .61rem;
  letter-spacing: .14em;
}

.site-footer {
  min-height: 170px;
  padding: 48px max(6vw, 28px);
  color: #a89b83;
  background: #17130f;
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: flex-start;
  border-top: 1px solid rgba(238,226,201,.14);
}

.footer-brand {
  color: var(--chalk);
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: .1em;
  text-decoration: none;
}

.footer-brand i {
  color: var(--brass-light);
  font-family: var(--body);
  font-weight: 400;
}

.site-footer p {
  margin: 5px 0 0;
  font-size: .82rem;
  font-style: italic;
}

.footer-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: .75rem;
}

.footer-meta a {
  color: inherit;
  text-underline-offset: 3px;
}

@media (max-width: 1050px) {
  .hero-botanical {
    opacity: .4;
  }

  .section-heading {
    grid-template-columns: 1fr;
    grid-template-areas: "folio" "title" "copy";
    gap: 12px;
  }

  .almanac-spread {
    grid-template-columns: 1fr;
  }

  .moon-plate {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
    padding-top: 66px;
  }

  .local-sky {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "heading button"
      "explainer status"
      "facts facts";
  }

  .tarot-heading {
    grid-template-columns: 1fr;
  }

  .tarot-table {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .deck-object {
    display: none;
  }

  .one-card-reading {
    grid-template-columns: 260px 1fr;
  }

  .daily-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .daily-heading {
    min-height: auto;
  }

  .daily-marginalia {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .shop-strip {
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
    justify-content: flex-start;
  }

  .shop-strip span:nth-of-type(4),
  .shop-strip span:nth-of-type(5),
  .shop-strip span:nth-of-type(6) {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 70px;
    padding: 0 20px;
  }

  .brand-lockup {
    grid-column: 1;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
    border: 0;
    border-bottom: 1px solid var(--brass);
    background: transparent;
    color: var(--chalk);
    padding: 4px 0;
    font-family: var(--display);
    font-size: .7rem;
    letter-spacing: .12em;
    cursor: pointer;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    padding: 17px 20px 20px;
    background: #18140f;
    border-bottom: 1px solid rgba(216,200,167,.3);
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

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

  .hero {
    min-height: 660px;
    padding: 68px 22px 74px;
  }

  .hero::before {
    inset: 13px;
  }

  .hero::after {
    inset: 20px;
  }

  .hero-botanical {
    display: none;
  }

  .hero-mark {
    width: 140px;
  }

  .hero h1 {
    flex-direction: column;
    gap: .02em;
    font-size: clamp(4.4rem, 21vw, 7rem);
    line-height: .69;
    margin-top: 8px;
  }

  .hero h1 b {
    font-size: .45em;
    line-height: .6;
  }

  .hero-deck {
    margin-top: 40px;
  }

  .desktop-break {
    display: none;
  }

  .hero-links {
    gap: 22px;
  }

  .phase-ornament {
    gap: 9px;
    font-size: .95rem;
  }

  .almanac-section,
  .tarot-section,
  .daily-section,
  .shop-section {
    padding-left: 21px;
    padding-right: 21px;
  }

  .side-label {
    display: none;
  }

  h2 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .moon-plate {
    padding-left: 18px;
    padding-right: 18px;
  }

  .moon-ledger {
    padding: 28px 22px 30px;
  }

  .moon-facts > div {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .moon-facts dd {
    text-align: left;
  }

  .local-sky {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "explainer"
      "button"
      "status"
      "facts";
  }

  .location-status {
    text-align: left;
  }

  .local-facts {
    grid-template-columns: 1fr 1fr;
  }

  .local-facts > div {
    border-right: 0;
    border-bottom: 1px solid rgba(36,28,24,.22);
    padding-left: 0 !important;
  }

  .local-facts > div:nth-child(odd) {
    border-right: 1px solid rgba(36,28,24,.22);
  }

  .local-facts > div:nth-child(even) {
    padding-left: 16px !important;
  }

  .method-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tarot-table {
    padding: 35px 20px 32px;
  }

  .one-card-reading {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .reading-copy {
    padding: 0 5px;
    width: 100%;
  }

  .spread-row {
    grid-template-columns: 1fr;
  }

  .mini-card {
    height: 255px;
  }

  .three-card-reading {
    min-height: 0;
  }

  .tarot-footnote {
    align-items: flex-start;
  }

  .daily-sheet {
    padding: 35px 29px 28px;
    transform: none;
  }

  .sheet-footer {
    flex-direction: column;
    gap: 4px;
  }

  .shop-frame {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 45px 28px;
  }

  .shop-link {
    grid-template-columns: 1fr auto;
  }

  .shop-link small {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* V3 — legibility and physical-card fixes */
.moon-ledger-title {
  font-size: .82rem;
}

.moon-facts dt {
  font-size: 1.10rem;
}

.moon-facts dd {
  font-size: 1.02rem;
  line-height: 1.35;
}

.moon-tradition p {
  font-size: 1.14rem;
  line-height: 1.5;
}

.moon-tradition small {
  font-size: .90rem;
}

.plate-caption strong {
  font-size: 1.08rem;
}

.plate-caption span {
  font-size: .82rem;
}

.plate-caption-sub {
  font-size: .90rem;
}

.method-note {
  font-size: .90rem;
}

.method-note a {
  color: var(--oxblood-dark);
  text-decoration-color: rgba(103,40,54,.5);
  text-underline-offset: 3px;
}

.drawn-card-face,
.drawn-card-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.drawn-card-face {
  transform: rotateY(0deg) translateZ(1px);
}

.drawn-card-back {
  transform: rotateY(180deg) translateZ(1px);
  background-color: #16110f;
  opacity: 1;
}

@media (max-width: 760px) {
  .moon-facts dt {
    font-size: 1.06rem;
  }

  .moon-facts dd {
    font-size: 1rem;
  }
}


/* ============================================================
   V4 — real tarot art, useful daily page, mobile-first repairs
   ============================================================ */

html, body {
  max-width: 100%;
  overflow-x: clip;
}

/* Real Rider–Waite–Smith card face */
.drawn-card {
  width: min(270px, 100%);
  height: auto;
  aspect-ratio: 300 / 527;
}

.drawn-card-face,
.drawn-card-back {
  overflow: hidden;
}

.drawn-card-face {
  padding: 0;
  background: #15100d;
}

.tarot-card-art {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #15100d;
  transition: transform .25s ease;
}

.tarot-card-art.reversed {
  transform: rotate(180deg);
}

.drawn-card-face .card-orientation {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  margin: 0;
  padding: 4px 9px 3px;
  white-space: nowrap;
  color: #efe2c8;
  background: rgba(24, 16, 13, .88);
  border: 1px solid rgba(218, 192, 139, .65);
  font-size: .54rem;
  letter-spacing: .15em;
}

.deck-credit {
  margin-top: 6px !important;
  color: #7f7463;
  font-size: .73rem !important;
}

.deck-credit a {
  color: #9f8b67;
  text-underline-offset: 3px;
}

/* Three-card spread now uses the actual card art */
.mini-card {
  height: auto;
  aspect-ratio: 300 / 527;
  padding: 0;
  overflow: hidden;
  background: #17110e;
}

.mini-card::before {
  display: none;
}

.mini-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-card-image.reversed {
  transform: rotate(180deg);
}

.spread-meaning {
  font-size: .88rem;
}

/* The daily page is a notebook, not another marketing hero */
.daily-section {
  padding: 96px max(6vw, 28px) 104px;
  border-bottom: 5px double var(--oxblood-dark);
}

.daily-ledger {
  width: min(1180px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.daily-ledger-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 26px 4px 27px;
  border-bottom: 3px double var(--ink);
}

.daily-ledger-head .folio {
  margin: 0 0 9px;
  color: var(--oxblood);
}

.daily-ledger-head h2 {
  font-size: clamp(3.1rem, 5.5vw, 5.8rem);
  line-height: .88;
}

.daily-date {
  padding-bottom: 8px;
  color: var(--muted-ink);
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .13em;
  text-align: right;
}

.daily-ledger-body {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 500px;
  border-bottom: 1px solid var(--ink);
}

.daily-prompt-card {
  position: relative;
  padding: 48px 44px 44px 4px;
  border-right: 1px solid var(--ink);
}

.daily-prompt-card blockquote {
  margin: 20px 0 0;
  max-width: 440px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.1;
  font-style: italic;
}

.prompt-mark {
  position: absolute;
  left: 5px;
  bottom: 31px;
  color: rgba(103, 40, 54, .38);
  font-size: 4.6rem;
  line-height: 1;
}

.daily-writing-page {
  padding: 42px 5px 34px 42px;
  display: flex;
  flex-direction: column;
}

.daily-writing-page > label {
  display: block;
  margin-bottom: 12px;
  color: var(--oxblood);
  font-family: var(--display);
  font-size: .65rem;
  letter-spacing: .16em;
}

#daily-entry {
  width: 100%;
  flex: 1;
  min-height: 330px;
  resize: vertical;
  border: 1px solid rgba(36, 28, 24, .55);
  border-radius: 0;
  outline: 0;
  padding: 25px 27px;
  color: var(--ink);
  caret-color: var(--oxblood);
  background:
    linear-gradient(rgba(239, 226, 198, .55), rgba(239, 226, 198, .55)),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 31px,
      rgba(58, 43, 33, .17) 32px,
      rgba(58, 43, 33, .17) 33px
    );
  font-family: var(--body);
  font-size: 1.16rem;
  line-height: 1.72;
  box-shadow: inset 0 0 38px rgba(73, 52, 31, .04);
}

#daily-entry:focus {
  border-color: var(--oxblood);
  box-shadow: inset 0 0 38px rgba(73, 52, 31, .04), 0 0 0 1px rgba(103,40,54,.1);
}

#daily-entry::placeholder {
  color: rgba(82, 67, 54, .48);
  font-style: italic;
}

.daily-writing-footer {
  margin-top: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  color: var(--muted-ink);
  font-size: .78rem;
  font-style: italic;
}

.daily-writing-footer button {
  border: 0;
  border-bottom: 1px solid rgba(63, 23, 32, .42);
  padding: 0 0 2px;
  color: var(--oxblood-dark);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: .57rem;
  letter-spacing: .1em;
  font-style: normal;
}

.daily-writing-footer button:hover,
.daily-writing-footer button:focus-visible {
  color: var(--oxblood);
  border-color: var(--oxblood);
}

.daily-privacy-note {
  padding: 13px 4px 12px;
  color: var(--muted-ink);
  font-size: .76rem;
  font-style: italic;
}

/* Kill the moss-green jump. Keep the site in the same ink / wine / tobacco family. */
.shop-section {
  position: relative;
  color: var(--chalk);
  background:
    radial-gradient(circle at 76% 18%, rgba(103, 40, 54, .22), transparent 28rem),
    linear-gradient(180deg, #211713 0%, #17120f 100%);
  border-top: 0;
}

.shop-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 1px;
  background: rgba(216, 200, 167, .18);
}

.shop-frame::before,
.shop-frame::after {
  background: #1d1511;
}

/* Mobile is a real layout, not a shrunken desktop */
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 19vw, 6rem);
  }

  .hero-deck {
    font-size: 1.08rem;
  }

  .hero-links {
    display: grid;
    justify-items: center;
    gap: 18px;
  }

  .almanac-section,
  .tarot-section,
  .daily-section,
  .shop-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .moon-ring {
    width: min(330px, 88vw);
  }

  .moon-ledger {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tarot-heading h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .spread-switcher {
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
    padding-bottom: 14px;
  }

  .spread-switcher::-webkit-scrollbar {
    display: none;
  }

  .tarot-table {
    padding: 29px 16px 30px;
  }

  .one-card-reading {
    gap: 28px;
  }

  .drawn-card {
    width: min(238px, 72vw);
  }

  .reading-copy {
    text-align: left;
  }

  .tarot-actions {
    gap: 16px;
  }

  .ritual-button {
    width: 100%;
    min-width: 0;
  }

  .text-button {
    margin: 0 auto;
  }

  .spread-row {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 4px 14px;
    scrollbar-width: thin;
  }

  .spread-card {
    flex: 0 0 min(68vw, 235px);
    scroll-snap-align: center;
  }

  .spread-summary {
    font-size: .93rem;
  }

  .tarot-footnote {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .daily-ledger-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .daily-date {
    text-align: left;
    padding-bottom: 0;
  }

  .daily-ledger-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .daily-prompt-card {
    padding: 30px 2px 34px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .daily-prompt-card blockquote {
    max-width: none;
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .prompt-mark {
    display: none;
  }

  .daily-writing-page {
    padding: 30px 0 22px;
  }

  #daily-entry {
    min-height: 300px;
    padding: 21px 18px;
    font-size: 1.06rem;
  }

  .daily-writing-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .shop-frame {
    padding: 38px 23px;
  }

  .journal-object {
    width: min(290px, 78vw);
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-small {
    font-size: .83rem;
  }

  .brand-crescent {
    width: 16px;
    height: 16px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .phase-ornament {
    gap: 7px;
    font-size: .84rem;
  }

  .almanac-section,
  .tarot-section,
  .daily-section,
  .shop-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .moon-plate {
    padding-left: 12px;
    padding-right: 12px;
  }

  .moon-ring {
    width: min(300px, 82vw);
  }

  .plate-caption {
    gap: 9px;
  }

  .plate-caption strong {
    font-size: .9rem;
  }

  .plate-caption span {
    font-size: .69rem;
  }

  .local-facts {
    grid-template-columns: 1fr;
  }

  .local-facts > div:nth-child(odd),
  .local-facts > div:nth-child(even) {
    border-right: 0;
    padding-left: 0 !important;
  }

  .tarot-table {
    margin-left: -2px;
    margin-right: -2px;
  }

  .reading-copy h3 {
    font-size: 2.15rem;
  }

  .shop-copy h2 {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
  }

  .shop-link {
    gap: 9px;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* ============================================================
   V5 — researched editorial / almanac direction
   ============================================================ */

/* FRONTISPIECE — no generated moth, no decorative side vines */
.hero {
  min-height: 610px;
  padding: 58px max(5vw, 22px) 66px;
  color: var(--ink);
  background:
    linear-gradient(rgba(216,200,167,.96), rgba(216,200,167,.96)),
    radial-gradient(circle at 20% 20%, rgba(79,56,37,.08) 0 1px, transparent 1.3px);
  background-size: auto, 19px 19px;
  border-bottom: 5px double var(--ink);
  display: grid;
  place-items: center;
}

.hero::before,
.hero::after,
.hero-stars,
.hero-botanical,
.hero-mark {
  display: none !important;
}

.frontispiece {
  width: min(990px, 100%);
  text-align: center;
  padding: 18px 36px 24px;
}

.frontispiece-rule {
  height: 4px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 15px;
}

.frontispiece-rule.bottom {
  margin: 21px 0 0;
}

.frontispiece-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  color: var(--muted-ink);
  font-family: var(--display);
  font-size: .62rem;
  letter-spacing: .15em;
}

.frontispiece-meta span:first-child { text-align: left; }
.frontispiece-meta span:last-child { text-align: right; }

.frontispiece h1 {
  margin: 54px auto 15px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .16em;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4.9rem, 10vw, 9.3rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: .015em;
  text-shadow: none;
}

.frontispiece h1 b {
  color: var(--oxblood);
  font-family: var(--body);
  font-size: .48em;
  font-style: italic;
  font-weight: 400;
}

.printer-ornament {
  display: block;
  width: min(410px, 68%);
  height: auto;
  margin: 31px auto 20px;
  mix-blend-mode: multiply;
  opacity: .82;
  filter: sepia(.38) contrast(.9);
}

.frontispiece-subtitle {
  font-family: var(--display);
  font-size: .88rem;
  letter-spacing: .23em;
}

.frontispiece-date {
  margin-top: 13px;
  color: var(--oxblood);
  font-size: .75rem;
  letter-spacing: .08em;
}

.frontispiece-index {
  width: min(760px, 100%);
  margin: 34px auto 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.frontispiece-index a {
  padding: 12px 10px 10px;
  text-decoration: none;
  font-family: var(--display);
  font-size: .7rem;
  letter-spacing: .08em;
  border-right: 1px solid rgba(36,28,24,.38);
}

.frontispiece-index a:last-child {
  border-right: 0;
}

.frontispiece-index a:hover,
.frontispiece-index a:focus-visible {
  background: rgba(103,40,54,.07);
}

.frontispiece-index span {
  color: var(--oxblood);
  margin-right: 4px;
}

/* Almanac headings: factual, editorial */
.section-heading.almanac-heading {
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "folio meta"
    "title meta";
  align-items: end;
  gap: 5px 50px;
}

.almanac-heading .folio {
  grid-area: folio;
}

.almanac-heading h2 {
  grid-area: title;
  font-size: clamp(4rem, 7vw, 6.8rem);
}

.almanac-heading-meta {
  grid-area: meta;
  align-self: end;
  padding-bottom: 7px;
  display: grid;
  gap: 4px;
  color: var(--muted-ink);
  text-align: right;
  font-size: .85rem;
}

.almanac-heading-meta b {
  color: var(--ink);
  font-weight: 500;
}

/* Traditional associations look like a reference entry, not brand copy */
.tradition-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 13px;
}

.tradition-label {
  color: var(--muted-ink);
  font-family: var(--display);
  font-size: .53rem;
  letter-spacing: .11em;
}

.moon-tradition strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: .07em;
}

.moon-tradition p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.48;
  font-style: normal;
}

/* Calculation note: technical disclosure */
.method-note {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  display: block;
  color: var(--muted-ink);
  font-size: .84rem;
  border-top: 1px solid rgba(36,28,24,.28);
  border-bottom: 1px solid rgba(36,28,24,.28);
  padding: 11px 0;
}

.method-note summary {
  width: max-content;
  cursor: pointer;
  color: var(--oxblood);
  font-family: var(--display);
  font-size: .65rem;
  letter-spacing: .12em;
  list-style-position: outside;
}

.method-note-body {
  margin-top: 12px;
  max-width: 800px;
}

.method-note-body p {
  margin: 4px 0;
}

.method-note-body a {
  color: var(--oxblood-dark);
}

/* Tarot header as catalog data */
.tarot-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
}

.tarot-heading .folio {
  grid-column: auto;
  margin-bottom: 10px;
}

.tarot-heading h2 {
  font-size: clamp(4rem, 7vw, 6.7rem);
}

.tarot-spec {
  margin: 0 0 7px;
  min-width: 320px;
  border-top: 1px solid var(--light-line);
}

.tarot-spec > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  padding: 7px 0 6px;
  border-bottom: 1px solid var(--light-line);
}

.tarot-spec dt {
  color: #9a8d79;
  font-style: italic;
}

.tarot-spec dd {
  margin: 0;
  color: #e8d9bb;
  text-align: right;
  font-family: var(--display);
  font-size: .72rem;
  letter-spacing: .06em;
}

.tarot-colophon {
  display: grid;
  gap: 3px;
  font-family: var(--display);
  font-size: .59rem;
  letter-spacing: .08em;
}

.tarot-colophon a {
  width: fit-content;
  color: #9f8b67;
  font-family: var(--body);
  font-size: .78rem;
  letter-spacing: 0;
  text-underline-offset: 3px;
}

/* Daily / shop: fewer slogans */
.shop-catalog-line {
  margin: 17px 0 0 !important;
  color: #c8bea9 !important;
  font-family: var(--display);
  font-size: .72rem !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Footer is a colophon, not a tagline */
.site-footer {
  min-height: 120px;
  align-items: center;
}

.footer-main {
  display: flex;
  gap: 17px;
  align-items: baseline;
}

.footer-main > span {
  color: #7d715f;
  font-size: .72rem;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 44px 16px 48px;
  }

  .frontispiece {
    padding: 12px 5px 16px;
  }

  .frontispiece-meta {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .frontispiece-meta span:nth-child(2) {
    display: none;
  }

  .frontispiece h1 {
    margin-top: 42px;
    flex-direction: column;
    gap: 0;
    font-size: clamp(4.2rem, 20vw, 6.2rem);
    line-height: .7;
  }

  .frontispiece h1 b {
    line-height: .65;
  }

  .printer-ornament {
    width: min(350px, 88%);
    margin-top: 35px;
  }

  .frontispiece-subtitle {
    font-size: .71rem;
    line-height: 1.5;
  }

  .frontispiece-index {
    grid-template-columns: 1fr 1fr;
  }

  .frontispiece-index a:nth-child(2) {
    border-right: 0;
  }

  .frontispiece-index a:nth-child(-n+2) {
    border-bottom: 1px solid rgba(36,28,24,.38);
  }

  .section-heading.almanac-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "folio"
      "title"
      "meta";
  }

  .almanac-heading-meta {
    margin-top: 10px;
    text-align: left;
  }

  .tarot-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tarot-spec {
    min-width: 0;
    width: 100%;
  }

  .tradition-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .site-footer {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .frontispiece h1 {
    font-size: clamp(3.8rem, 22vw, 5.2rem);
  }

  .frontispiece-index {
    grid-template-columns: 1fr;
  }

  .frontispiece-index a {
    border-right: 0;
    border-bottom: 1px solid rgba(36,28,24,.38);
  }

  .frontispiece-index a:last-child {
    border-bottom: 0;
  }

  .tarot-spec > div {
    grid-template-columns: 68px 1fr;
  }
}


/* ============================================================
   V6 — authentic deck back, readable type, no fake shop hero
   ============================================================ */

/* No promo strip above the navigation. */
.shop-strip {
  display: none !important;
}

/* Frontispiece metadata now has two fields, not a list of three. */
.frontispiece-meta {
  grid-template-columns: 1fr 1fr;
  font-size: .78rem;
}

.frontispiece-meta span:last-child {
  text-align: right;
}

/* Authentic 1909 Rider–Waite–Smith Roses & Lilies card back. */
.deck-card,
.drawn-card-back {
  background:
    #d8c79f
    url("./assets/tarot/rws-1909-back.jpg")
    center / cover no-repeat !important;
}

.deck-card-1 {
  padding: 0;
}

.deck-card::before,
.drawn-card-back::before {
  display: none !important;
}

.card-back-pattern,
.back-eye {
  display: none !important;
}

/* Orientation belongs in the reading text, never stamped on the card art. */
.drawn-card-face .card-orientation {
  display: none !important;
}

/* Readability floor — the old 10–11px labels were too damn small. */
body {
  font-size: 19px;
}

.site-nav,
.brand-small,
.folio,
.annotation,
.plate-number,
.moon-ledger-title,
.reading-label,
.spread-position,
.frontispiece-date,
.frontispiece-index a,
.tarot-spec dd,
.tarot-colophon,
.daily-writing-page > label,
.shop-platform,
.shop-open,
.footer-meta {
  font-size: .76rem;
}

.tradition-label,
.method-note summary,
.deck-label {
  font-size: .70rem;
}

.moon-facts dt {
  font-size: 1.12rem;
}

.moon-facts dd {
  font-size: 1.05rem;
}

.local-facts dt {
  font-size: .92rem;
}

.local-facts dd {
  font-size: 1.06rem;
}

.location-status,
.method-note,
.daily-writing-footer {
  font-size: .86rem;
}

.tarot-colophon {
  line-height: 1.5;
}

.reading-copy .meaning,
.reading-copy .reflection-question {
  font-size: 1.10rem;
}

/* Daily page: no persistence language, one clear privacy line. */
.daily-writing-footer {
  align-items: baseline;
}

.daily-writing-footer > span {
  max-width: 620px;
  color: var(--muted-ink);
  font-style: italic;
}

/* Remove old shop-card/product-mock layout entirely. */
.shop-section {
  padding: 74px max(6vw, 28px) 82px;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, rgba(52, 40, 30, .027) 1px, transparent 1px),
    linear-gradient(rgba(52, 40, 30, .025) 1px, transparent 1px),
    radial-gradient(circle at 19% 33%, rgba(92, 72, 53, .065) 0 1px, transparent 1.5px);
  background-size: 7px 7px, 11px 11px, 23px 23px;
  border-top: 5px double var(--oxblood-dark);
}

.shop-section::before {
  display: none;
}

.shop-directory {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 54px;
  padding: 31px 0 30px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.shop-directory-heading {
  padding-right: 32px;
  border-right: 1px solid rgba(36,28,24,.42);
}

.shop-directory-heading .folio {
  margin: 0 0 13px;
  color: var(--oxblood);
}

.shop-wordmark {
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: .035em;
}

.shop-wordmark i {
  color: var(--oxblood);
  font-family: var(--body);
  font-weight: 400;
}

.shop-directory-links {
  display: grid;
  align-content: center;
  border-top: 1px solid rgba(36,28,24,.38);
}

.shop-directory-links a {
  display: grid;
  grid-template-columns: .45fr 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 15px 2px 13px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(36,28,24,.38);
}

.shop-platform {
  color: var(--oxblood);
  font-family: var(--display);
  letter-spacing: .11em;
}

.shop-destination {
  color: var(--muted-ink);
  font-style: italic;
}

.shop-open {
  font-family: var(--display);
  letter-spacing: .08em;
}

.shop-directory-links a:hover .shop-open,
.shop-directory-links a:focus-visible .shop-open {
  color: var(--oxblood);
}

/* Kill old fake-journal product mock CSS content if any stale markup ever returns. */
.journal-object,
.shop-frame {
  display: none !important;
}

/* Footer: visible, not microscopic. */
.site-footer {
  padding-top: 38px;
  padding-bottom: 40px;
}

.footer-brand {
  font-size: 1.20rem;
}

.footer-main > span {
  font-size: .80rem;
}

@media (max-width: 760px) {
  body {
    font-size: 18px;
  }

  .frontispiece-meta {
    grid-template-columns: 1fr 1fr;
    font-size: .72rem;
  }

  .shop-directory {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .shop-directory-heading {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(36,28,24,.42);
  }

  .shop-directory-links a {
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
  }

  .shop-destination {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .daily-writing-footer {
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .site-nav,
  .folio,
  .annotation,
  .plate-number,
  .reading-label,
  .spread-position,
  .frontispiece-index a,
  .shop-platform,
  .shop-open,
  .footer-meta {
    font-size: .73rem;
  }

  .frontispiece-meta {
    font-size: .69rem;
  }

  .shop-wordmark {
    font-size: 2.25rem;
  }
}


/* ============================================================
   V7 — handwritten journal page
   ============================================================ */

:root {
  --handwriting: "Cedarville Cursive", "Segoe Print", "Bradley Hand", cursive;
}

/* Turn the right-hand daily area into a real ruled paper surface. */
.daily-writing-page {
  padding-top: 38px;
}

.daily-writing-page > label {
  margin-left: 4px;
  margin-bottom: 10px;
}

.journal-paper {
  position: relative;
  min-height: 435px;
  flex: 1;
  overflow: hidden;
  border: 0;
  background:
    /* subtle paper bloom */
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.18), transparent 28rem),
    linear-gradient(rgba(239, 226, 198, .43), rgba(239, 226, 198, .43));
  box-shadow:
    inset 0 0 34px rgba(70, 48, 30, .035);
}

/* Fine horizontal ruling. 38px exactly matches textarea line-height below. */
.journal-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 36px,
      rgba(76, 59, 44, .20) 37px,
      rgba(76, 59, 44, .20) 38px
    );
}

/* Old notebook margin line — intentionally faint, not school-notebook red. */
.journal-margin {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 54px;
  width: 1px;
  background: rgba(103, 40, 54, .25);
  pointer-events: none;
}

#daily-entry {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 435px;
  height: 100%;
  resize: vertical;

  /* The form control disappears visually. */
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;

  /* Align handwritten text to the 38px rules. */
  padding: 6px 24px 18px 72px;
  margin: 0;

  color: #2e211a;
  caret-color: var(--oxblood-dark);

  font-family: var(--handwriting);
  font-size: 1.62rem;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: .01em;
  text-rendering: optimizeLegibility;

  /* Don't let browser defaults spoil the illusion. */
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

#daily-entry:focus {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

#daily-entry::placeholder {
  color: rgba(68, 50, 38, .42);
  font-family: var(--handwriting);
  font-style: normal;
  opacity: 1;
}

/* Slight ink variation in selection/caret context. */
#daily-entry::selection {
  background: rgba(103, 40, 54, .16);
  color: #241915;
}

/* The footer tucks under the "page" instead of feeling like form chrome. */
.daily-writing-footer {
  margin-top: 8px;
  padding: 0 2px;
}

@media (max-width: 760px) {
  .journal-paper {
    min-height: 345px;
  }

  #daily-entry {
    min-height: 345px;
    padding: 6px 16px 16px 54px;
    font-size: 1.48rem;
    line-height: 36px;
  }

  .journal-paper::before {
    background:
      repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 34px,
        rgba(76, 59, 44, .20) 35px,
        rgba(76, 59, 44, .20) 36px
      );
  }

  .journal-margin {
    left: 40px;
  }
}

@media (max-width: 430px) {
  .journal-paper {
    min-height: 315px;
  }

  #daily-entry {
    min-height: 315px;
    padding-left: 45px;
    padding-right: 12px;
    font-size: 1.38rem;
  }

  .journal-margin {
    left: 34px;
  }
}


/* ============================================================
   LIVE HOTFIX — mobile title alignment / iOS emoji cleanup
   ============================================================ */

@media (max-width: 760px) {
  .frontispiece h1 {
    align-items: center;
    text-align: center;
  }

  .frontispiece h1 > span,
  .frontispiece h1 > b {
    align-self: center;
  }

  .frontispiece h1 b {
    display: block;
    margin: .10em 0 .08em;
    line-height: .55;
    transform: none;
  }
}

@media (max-width: 430px) {
  .frontispiece h1 b {
    margin: .12em 0 .10em;
  }
}


/* ============================================================
   LIVE HOTFIX — mobile ampersand vertical spacing
   ============================================================ */

@media (max-width: 760px) {
  .frontispiece h1 {
    row-gap: 0;
  }

  .frontispiece h1 > span {
    display: block;
    line-height: .74;
  }

  .frontispiece h1 b {
    display: block;
    position: relative;
    z-index: 2;
    margin: .28em 0 .22em;
    line-height: .55;
    font-size: .38em;
    transform: none;
  }
}

@media (max-width: 430px) {
  .frontispiece h1 b {
    margin: .32em 0 .26em;
    font-size: .36em;
  }
}


/* ============================================================
   LIVE HOTFIX — mobile ampersand balance
   ============================================================ */

@media (max-width: 760px) {
  .frontispiece h1 b {
    font-size: .42em;
    line-height: .58;
    margin: .08em 0 .42em;
  }
}

@media (max-width: 430px) {
  .frontispiece h1 b {
    font-size: .42em;
    margin-top: .05em;
    margin-bottom: .48em;
  }
}
