:root {
  color-scheme: dark;
  --ink: #fff7fb;
  --muted: #dcc9d8;
  --wine: #925876;
  --wine-deep: #4a2940;
  --night: #211522;
  --charcoal: #30212f;
  --moss: #84728f;
  --clay: #ba7186;
  --gold: #d9b878;
  --gold-soft: #f2dfb5;
  --paper: #f7ecf1;
  --line: rgba(242, 214, 226, 0.25);
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 8%, rgba(184, 112, 145, 0.28), transparent 28rem),
    radial-gradient(circle at 88% 35%, rgba(130, 104, 155, 0.18), transparent 30rem),
    linear-gradient(180deg, #382338 0%, var(--night) 52%, #2a1a2a 100%);
  color: var(--ink);
  font-family: var(--sans);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  z-index: 10;
  mix-blend-mode: soft-light;
}
body.reveal-open { overflow: hidden; }
.sky-invitation { width: 100%; margin: 20px 0 0; padding: 17px 22px; display: flex; align-items: center; gap: 18px; text-align: left; color: var(--gold-soft); background: linear-gradient(110deg, #40283f, #64425e); border: 1px solid rgba(242,223,181,.5); border-radius: 18px 6px 18px 6px; cursor: pointer; box-shadow: 0 12px 30px rgba(40,20,39,.18); }
.sky-invitation > span:first-child { font-size: 30px; line-height: 1; }
.sky-invitation > span:nth-child(2) { flex: 1; }
.sky-invitation small { display: block; color: #ead3df; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.sky-invitation strong { display: block; margin-top: 3px; font: 600 23px/1.2 var(--serif); }
.sky-invitation:hover, .sky-invitation:focus-visible { border-color: var(--gold-soft); background: linear-gradient(110deg, #52344e, #76516a); }
.sky-reveal-card { text-align: left; }
.sky-reveal-card::before { text-align: center; }
.sky-reveal-card h2 { font-size: clamp(31px, 6vw, 47px); }
.sky-reveal-card p { line-height: 1.6; font-size: 16px; color: #f4e6ed; }
.sky-reveal-card .sky-date { color: var(--gold-soft); font-weight: 650; }
.sky-reveal-card .sky-tip { padding: 14px 0 0; border-top: 1px solid var(--line); }
.sky-reveal-card a { display: inline-block; color: var(--gold-soft); font-size: 14px; text-underline-offset: 4px; }
@media (max-width: 600px) { .sky-reveal-card { padding: 40px 26px 30px; max-height: 90vh; overflow-y: auto; } .sky-invitation { padding: 15px; } }

a, button, select, textarea { font: inherit; }
a { color: inherit; }

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: 0.15;
}
.ambient-one { width: 28rem; height: 28rem; background: #b76f95; right: -10rem; top: 32rem; }
.ambient-two { width: 24rem; height: 24rem; background: #8d78a5; left: -12rem; top: 75rem; }

.site-header {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.brand { display: inline-flex; gap: 12px; align-items: center; text-decoration: none; }
.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-size: 24px;
  box-shadow: inset 0 0 18px rgba(242, 223, 181, 0.14), 0 0 24px rgba(210, 145, 180, 0.12);
}
.brand strong { display: block; font-family: var(--serif); font-size: 20px; letter-spacing: 0.03em; }
.brand small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; font-size: 9px; margin-top: 1px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a, .mobile-nav a { color: var(--muted); text-decoration: none; font-size: 12px; padding: 10px 13px; border-radius: 999px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #2b2028; background: var(--gold-soft); }
.menu-toggle, .mobile-nav { display: none; }

main { position: relative; z-index: 1; }
.site-view { min-height: calc(100vh - 92px); animation: view-in 280ms ease both; }
.site-view[hidden] { display: none !important; }
@keyframes view-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 660px;
  margin: 0 auto;
  padding: 110px 0 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow, .mini-label {
  margin: 0 0 15px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 600;
}

h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 108px);
  line-height: 0.86;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.hero-copy { color: var(--muted); max-width: 590px; line-height: 1.75; font-size: 16px; }
.sign-entry { width: min(700px, 72%); margin-top: 18px; padding: 22px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; border: 1px solid var(--line); border-radius: 22px 6px 22px 6px; background: rgba(48, 29, 46, .72); backdrop-filter: blur(12px); box-shadow: 0 22px 60px rgba(16, 9, 17, .18); }
.sign-entry .mini-label { display: block; margin-bottom: 7px; }
.sign-entry h2 { font: 600 27px/1.05 var(--serif); margin-bottom: 7px; }
.sign-entry p { color: var(--muted); font-size: 13px; line-height: 1.55; margin-bottom: 0; }
.sign-control label { display: block; color: var(--gold-soft); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 7px; }
.sign-control select { width: 100%; color: var(--ink); background: #392537; border: 1px solid rgba(242,214,226,.36); border-radius: 999px; padding: 11px 14px; }
.sign-control small { display: block; color: #95877e; font-size: 10px; margin-top: 7px; }
.primary-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #211c1e;
  background: var(--gold-soft);
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease;
}
.primary-link:hover { transform: translateY(-2px); background: #f1ddae; }

.hero-moon { position: absolute; width: 390px; height: 390px; right: 2%; top: 126px; }
.moon-glow, .moon-disc, .orbit { position: absolute; border-radius: 50%; }
.moon-glow { inset: 14%; background: rgba(230, 198, 136, 0.16); filter: blur(28px); }
.moon-disc {
  inset: 26%;
  background: radial-gradient(circle at 34% 30%, #fff8ef 0%, #efd6e0 48%, #b98aa5 100%);
  box-shadow: 0 0 65px rgba(235, 180, 211, 0.28), inset -24px -16px 34px rgba(77, 42, 67, 0.28);
}
.moon-disc::before, .moon-disc::after { content: ""; position: absolute; border-radius: 50%; background: rgba(109, 76, 63, 0.13); }
.moon-disc::before { width: 22%; height: 22%; left: 22%; top: 19%; }
.moon-disc::after { width: 13%; height: 13%; right: 20%; bottom: 24%; }
.orbit { border: 1px solid var(--line); transform: rotate(-18deg); }
.orbit-one { inset: 10%; }
.orbit-two { inset: 1%; border-style: dashed; opacity: 0.5; }
.star { position: absolute; color: var(--gold-soft); font-style: normal; }
.star-a { left: 7%; top: 46%; font-size: 20px; }
.star-b { right: 3%; top: 22%; font-size: 34px; }
.star-c { right: 16%; bottom: 12%; font-size: 20px; }

.guide-section { background: linear-gradient(180deg, #fbf3f7 0%, #f3e7ef 56%, #eee4f1 100%); color: #402d3b; padding: 90px max(24px, calc((100vw - 1180px) / 2)); }
.mail-section { background: linear-gradient(180deg, #f8edf3 0%, #eee3f0 100%); color: #402d3b; padding: 82px max(24px, calc((100vw - 1180px) / 2)) 100px; }
.folklore-section { background: radial-gradient(circle at 86% 12%, #e9d4e5, transparent 36%), linear-gradient(165deg, #f7eff1, #e9e1e9); color: #402d3b; padding: 82px max(24px, calc((100vw - 1180px) / 2)) 100px; }
.folklore-card { margin-top: 28px; padding: clamp(26px, 5vw, 64px); border: 1px solid #d9becb; border-radius: 28px; background: #fffaf7; box-shadow: 0 22px 65px #55354b18; }
.folklore-card h3 { font: 600 clamp(34px, 5vw, 62px)/1.05 var(--serif); max-width: 760px; margin: 18px 0; }
.folklore-lede { font: 1.3rem/1.65 var(--serif); max-width: 760px; color: #6e435d; }
.folklore-body { max-width: 790px; margin: 42px auto 30px; }
.folklore-body section { border-top: 1px solid #e8d8df; padding: 30px 0 18px; }
.folklore-body h4, .folklore-sources h4 { font: 600 clamp(24px, 3vw, 34px)/1.2 var(--serif); margin: 0 0 18px; }
.folklore-body p { line-height: 1.8; margin: 0 0 18px; font-size: 1.05rem; }
.folklore-note { font-size: .9rem; line-height: 1.6; color: #806b76; }
.folklore-sources { margin-top: 30px; border-top: 1px solid #e8d8df; padding-top: 24px; }
.folklore-sources h4 { font-size: 1.35rem; }
.folklore-sources ul { padding-left: 22px; line-height: 1.9; }
.folklore-sources a { color: #734260; text-underline-offset: 4px; }
.folklore-back { display: inline-block; margin-top: 22px; color: #734260; font-weight: 700; text-underline-offset: 5px; }
.story-link { display: inline-block; margin-top: 14px; color: #754463; font-weight: 700; text-underline-offset: 5px; }
.story-link[hidden] { display: none; }
.mail-page-heading .eyebrow { color: #935a79; }
.mail-page-heading > p { color: #745f70; }
.mail-month-control { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 26px; padding: 17px 20px; border: 1px solid rgba(103,68,94,.17); background: rgba(255,251,253,.58); }
.mail-month-control label { color: #77556a; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; font-weight: 700; }
.mail-month-control select { min-width: 240px; color: #402d3b; background: #fffafd; border: 1px solid rgba(103,68,94,.25); border-radius: 999px; padding: 11px 38px 11px 15px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 48px; margin-bottom: 38px; }
.section-heading h2, .reflection-heading h2 { font-family: var(--serif); font-size: clamp(42px, 6vw, 70px); line-height: 0.95; margin-bottom: 0; font-weight: 600; }
.section-heading > p { max-width: 320px; color: #745f70; line-height: 1.7; }
.guide-section .eyebrow { color: #935a79; }
.month-ribbon { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); border-top: 1px solid rgba(67, 49, 44, 0.2); border-bottom: 1px solid rgba(67, 49, 44, 0.2); }
.month-tab {
  appearance: none;
  border: 0;
  border-right: 1px solid rgba(67, 49, 44, 0.13);
  background: transparent;
  color: #6e5c57;
  padding: 16px 4px;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 160ms ease, color 160ms ease;
}
.month-tab:last-child { border-right: 0; }
.month-tab:hover { background: rgba(134, 88, 64, 0.08); }
.month-tab[aria-selected="true"] { background: var(--wine); color: #fff8fb; border-radius: 999px; }
.month-select, .month-select-label { display: none; }

.month-card { margin-top: 34px; border: 1px solid rgba(103, 68, 94, 0.17); border-radius: 30px 8px 30px 8px; overflow: hidden; background: rgba(255, 251, 253, 0.58); box-shadow: 0 28px 80px rgba(91, 53, 79, 0.10); }
.month-intro { padding: 36px 40px; display: flex; justify-content: space-between; gap: 40px; border-bottom: 1px solid rgba(65, 48, 43, 0.18); }
.month-number { color: #9b617f; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; }
.month-intro h3 { font-family: var(--serif); font-size: clamp(46px, 7vw, 76px); line-height: 0.9; margin-bottom: 10px; font-weight: 600; }
.month-poem { color: #745e70; font-family: var(--serif); font-size: 21px; font-style: italic; margin-bottom: 0; }
.season-seal { flex: 0 0 110px; height: 110px; border: 1px solid #b6819c; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; box-shadow: inset 0 0 26px rgba(180, 122, 153, .08); }
.season-seal span { font-size: 28px; color: #945b78; }
.season-seal small { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: #71594e; }
.guide-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; }
.guide-copy { padding: 42px 40px; }
.theme-block { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid rgba(65, 48, 43, 0.15); }
.guide-grid h4 { font-family: var(--serif); font-size: 32px; line-height: 1.05; font-weight: 600; margin-bottom: 12px; }
.guide-grid p { color: #675464; line-height: 1.75; font-size: 14px; }
.guide-grid .mini-label { color: #965978; }
.ritual { padding: 15px 18px; background: rgba(175, 107, 143, 0.08); border-left: 2px solid #b16f91; border-radius: 0 14px 14px 0; margin: 18px 0 0; }
.moon-panel { background: var(--wine-deep); color: var(--ink); padding: 42px 40px; }
.moon-panel-heading { display: flex; justify-content: space-between; gap: 24px; }
.moon-panel .mini-label { color: var(--gold-soft); }
.moon-panel p { color: #d7c8b9; }
.phase-icon { width: 50px; height: 50px; flex: 0 0 50px; border: 1px solid rgba(232, 211, 164, 0.45); border-radius: 50%; position: relative; overflow: hidden; }
.phase-icon::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--gold-soft); transition: clip-path 200ms ease; }
.phase-icon[data-phase="new"]::before { background: #5a414d; box-shadow: inset 0 0 0 1px #967783; }
.phase-icon[data-phase="first"]::before { clip-path: inset(0 0 0 50%); }
.phase-icon[data-phase="full"]::before { clip-path: inset(0); box-shadow: 0 0 13px rgba(234, 211, 160, 0.6); }
.phase-icon[data-phase="waning"]::before { clip-path: inset(0 50% 0 0); }
.phase-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin: 26px 0 22px; }
.phase-tab { border: 1px solid rgba(232, 211, 164, 0.25); color: #d7c8b9; background: transparent; border-radius: 999px; padding: 9px 6px; font-size: 10px; cursor: pointer; }
.phase-tab:hover { border-color: rgba(232, 211, 164, 0.65); }
.phase-tab[aria-selected="true"] { color: #2c2226; background: var(--gold-soft); border-color: var(--gold-soft); }
.phase-mantra { font-family: var(--serif); font-style: italic; font-size: 20px !important; color: var(--gold-soft) !important; border-top: 1px solid rgba(232, 211, 164, 0.2); padding-top: 22px; margin-bottom: 0; }

.pack-companion {
  --pack-accent: #9b603f;
  --pack-deep: #40232e;
  margin-top: 28px;
  border: 1px solid rgba(65, 48, 43, 0.2);
  background: #f8efdf;
  box-shadow: 0 22px 55px rgba(68, 45, 37, 0.1);
}
.pack-companion[data-pack="november"] { --pack-accent: #89739b; --pack-deep: #45334f; }
.pack-heading { display: flex; justify-content: space-between; gap: 36px; padding: 42px 40px; color: #fff8ea; background: var(--pack-deep); }
.pack-heading .eyebrow { color: var(--gold-soft); }
.pack-heading h3 { font: 600 clamp(38px, 5vw, 58px)/0.98 var(--serif); margin-bottom: 14px; }
.pack-heading p:last-child { max-width: 700px; color: #d9cdbf; line-height: 1.7; margin-bottom: 0; }
.pack-stamp { width: 88px; height: 88px; flex: 0 0 88px; border: 1px solid rgba(235, 210, 159, 0.58); border-radius: 50%; display: grid; place-items: center; text-align: center; color: var(--gold-soft); font: 600 16px/0.9 var(--serif); transform: rotate(5deg); }
.pack-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 42px 40px; }
.pack-layout .mini-label { color: var(--pack-accent); }
.pack-items { border-top: 1px solid rgba(65, 48, 43, 0.16); }
.pack-item { display: grid; grid-template-columns: 26px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid rgba(65, 48, 43, 0.16); }
.pack-item > span { color: var(--pack-accent); font-family: var(--serif); font-size: 20px; }
.pack-item strong { display: block; font-family: var(--serif); font-size: 20px; line-height: 1.05; }
.pack-item p { color: #6a5954; font-size: 12px; line-height: 1.55; margin: 5px 0 0; }
.pack-journey { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.journey-step { min-height: 128px; padding: 17px; color: #f7eddf; background: var(--pack-deep); }
.journey-step span { display: block; color: var(--gold-soft); text-transform: uppercase; letter-spacing: 0.14em; font-size: 8px; margin-bottom: 8px; }
.journey-step strong { display: block; font-family: var(--serif); font-size: 20px; line-height: 1.05; }
.journey-step p { color: #cfc1b4; font-size: 11px; line-height: 1.5; margin: 7px 0 0; }
.return-to-pack { margin: 0 40px 40px; padding: 22px 24px; display: grid; grid-template-columns: 36px 1fr; gap: 14px; background: rgba(119, 83, 63, 0.08); border-left: 3px solid var(--pack-accent); }
.return-to-pack > span { color: var(--pack-accent); font-size: 28px; }
.return-to-pack strong { font-family: var(--serif); font-size: 22px; }
.return-to-pack p { color: #665651; font-size: 13px; line-height: 1.65; margin: 4px 0 0; }

.personal-pathway { margin-top: 28px; color: var(--ink); background: linear-gradient(135deg, var(--wine-deep), #563953); border: 1px solid rgba(206,143,177,.32); border-radius: 8px 28px 8px 28px; padding: 42px 40px 30px; box-shadow: 0 24px 65px rgba(65, 37, 58, .16); }
.pathway-heading { display: flex; justify-content: space-between; gap: 30px; align-items: start; }
.pathway-heading h3 { font: 600 clamp(38px,5vw,56px)/.98 var(--serif); margin-bottom: 14px; }
.pathway-heading p:last-child { color: #d7c8b9; max-width: 760px; line-height: 1.7; }
.zodiac-mark { width: 82px; height: 82px; flex: 0 0 82px; border: 1px solid rgba(234,211,160,.45); border-radius: 50%; display: grid; place-items: center; color: var(--gold-soft); font-size: 38px; }
.recommendation-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 26px; }
.recommendation-card { padding: 20px; border: 1px solid rgba(234,211,160,.18); background: rgba(255,255,255,.035); }
.recommendation-card span { display: block; color: var(--gold); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 9px; }
.recommendation-card strong { display: block; font: 600 21px/1.08 var(--serif); }
.recommendation-card p { color: #cfc1b4; font-size: 12px; line-height: 1.55; margin: 9px 0 0; }
.pathway-note { color: #9f9187; font-size: 11px; line-height: 1.5; margin: 20px 0 0; }
.pathway-section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 80px 0 100px; }
.pathway-page-heading { align-items: end; }
.pathway-page-heading > p { color: var(--muted); }
.pathway-page-heading h2 { color: var(--ink); }
.pathway-empty { min-height: 420px; display: grid; place-content: center; justify-items: center; text-align: center; border: 1px solid var(--line); border-radius: 30px 8px; background: rgba(65,39,61,.5); padding: 40px; }
.pathway-empty[hidden] { display: none; }
.pathway-empty > span { color: var(--gold); font-size: 36px; }
.pathway-empty h3 { font: 600 38px/1 var(--serif); margin: 16px 0 10px; }
.pathway-empty p { color: var(--muted); }
.pathway-empty a { color: #2b2028; background: var(--gold-soft); padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; }
.recommendation-card small { display: block; color: var(--gold-soft); font-size: 11px; line-height: 1.45; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(234,211,160,.15); }
.practice-note { display: grid; grid-template-columns: 190px 1fr; gap: 24px; align-items: start; margin-top: 26px; padding: 20px; border: 1px solid rgba(234,211,160,.2); background: rgba(255,255,255,.035); }
.practice-note strong { color: var(--gold-soft); font-family: var(--serif); font-size: 19px; }
.practice-note p { color: #cfc1b4; font-size: 13px; line-height: 1.6; margin: 0; }

.reflection-section { width: min(1000px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.reflection-card { border: 1px solid var(--line); border-radius: 30px 8px 30px 8px; padding: 58px; background: rgba(65, 39, 61, 0.58); box-shadow: 0 22px 90px rgba(21, 10, 20, 0.25); }
.reflection-heading { display: flex; justify-content: space-between; align-items: start; gap: 30px; margin-bottom: 38px; }
.saved-status { color: #bdca9d; font-size: 12px; min-height: 18px; }
.prompt-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.prompt { padding: 24px 20px 24px 0; color: var(--muted); line-height: 1.6; font-family: var(--serif); font-size: 19px; }
.prompt + .prompt { padding-left: 20px; border-left: 1px solid var(--line); }
.prompt span { color: var(--gold); display: block; font: 10px var(--sans); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 9px; }
.journal-label { display: block; margin-bottom: 10px; color: var(--gold-soft); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; }
textarea { width: 100%; resize: vertical; min-height: 170px; color: var(--ink); background: #2c1d2b; border: 1px solid var(--line); border-radius: 16px 4px 16px 4px; padding: 20px; line-height: 1.7; outline: none; }
textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216, 179, 107, 0.1); }
textarea::placeholder { color: #837670; }
.journal-actions { display: flex; align-items: center; gap: 20px; margin-top: 18px; }
.save-button { border: 0; background: var(--gold-soft); color: #2d2425; padding: 13px 20px; border-radius: 999px; font-weight: 600; cursor: pointer; }
.save-button:hover { background: #f1ddae; }
.clear-button { border: 0; background: transparent; color: var(--muted); padding: 10px; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.privacy-copy { color: #8f837d; font-size: 11px; margin: 15px 0 0; }

footer { width: min(1180px, calc(100% - 48px)); min-height: 100px; margin: 0 auto; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #9c8d84; font-family: var(--serif); font-size: 14px; }

.sign-reveal { position: fixed; inset: 0; z-index: 40; display: grid; place-items: center; padding: 24px; }
.sign-reveal[hidden] { display: none; }
.sign-reveal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(21, 10, 20, .76); backdrop-filter: blur(8px); cursor: default; }
.sign-reveal-card { position: relative; width: min(610px, 100%); padding: 54px 56px 48px; overflow: hidden; text-align: center; color: var(--ink); background: radial-gradient(circle at 50% 0%, rgba(184,112,145,.28), transparent 48%), linear-gradient(145deg, #4a2940, #281a28); border: 1px solid rgba(242,223,181,.42); border-radius: 34px 10px 34px 10px; box-shadow: 0 32px 100px rgba(0,0,0,.48); animation: reveal-arrive 320ms ease both; }
.sign-reveal-card::before { content: "✦   ·   ✧   ·   ✦"; display: block; color: var(--gold); letter-spacing: .35em; font-size: 12px; margin-bottom: 22px; }
.reveal-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); background: transparent; font-size: 25px; line-height: 1; cursor: pointer; }
.reveal-symbol { width: 78px; height: 78px; margin: 0 auto 20px; display: grid; place-items: center; border: 1px solid rgba(242,223,181,.5); border-radius: 50%; color: var(--gold-soft); font-size: 38px; box-shadow: inset 0 0 26px rgba(242,223,181,.08), 0 0 36px rgba(184,112,145,.16); }
.sign-reveal-card .eyebrow { margin-bottom: 13px; }
.sign-reveal-card h2 { margin-bottom: 12px; font: 600 clamp(36px, 6vw, 54px)/.98 var(--serif); }
.reveal-month { color: var(--gold-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; }
.reveal-guidance { max-width: 470px; margin: 22px auto 0; color: var(--muted); font: 19px/1.65 var(--serif); }
.reveal-actions { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 30px; }
.reveal-primary, .reveal-secondary { border-radius: 999px; padding: 13px 18px; cursor: pointer; }
.reveal-primary { color: #281f24; background: var(--gold-soft); border: 1px solid var(--gold-soft); font-weight: 700; }
.reveal-secondary { color: var(--muted); background: transparent; border: 1px solid var(--line); }
@keyframes reveal-arrive { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

button:focus-visible, a:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 900px) {
  .hero { min-height: 680px; padding-top: 84px; justify-content: flex-start; }
  .hero h1 { max-width: 620px; }
  .hero-moon { width: 270px; height: 270px; top: auto; right: -20px; bottom: 40px; opacity: 0.72; }
  .month-ribbon { grid-template-columns: repeat(6, 1fr); }
  .month-tab:nth-child(-n+6) { border-bottom: 1px solid rgba(67, 49, 44, 0.13); }
  .guide-grid { grid-template-columns: 1fr; }
  .pack-layout { grid-template-columns: 1fr; gap: 38px; }
  .recommendation-grid { grid-template-columns: repeat(2,1fr); }
  .prompt-grid { grid-template-columns: 1fr; }
  .prompt { padding: 20px 0; }
  .prompt + .prompt { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .site-header, .hero, footer { width: min(100% - 32px, 1180px); }
  .site-header { min-height: 76px; }
  .site-nav { display: none; }
  .menu-toggle { display: block; color: var(--gold-soft); border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 9px 13px; }
  .mobile-nav { position: relative; z-index: 5; margin: 0 16px 12px; padding: 10px; border: 1px solid var(--line); background: #30212f; border-radius: 14px; grid-template-columns: 1fr 1fr; gap: 6px; }
  .mobile-nav:not([hidden]) { display: grid; }
  .mobile-nav a { text-align: center; border: 1px solid rgba(242,214,226,.12); }
  .mobile-nav a[aria-current="page"] { color: #2b2028; background: var(--gold-soft); }
  .brand strong { font-size: 18px; }
  .hero { min-height: 640px; padding: 68px 0 72px; }
  h1 { font-size: clamp(52px, 17vw, 76px); }
  .hero-copy { max-width: 90%; font-size: 14px; }
  .sign-entry { width: 100%; grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .hero-moon { width: 230px; height: 230px; right: -46px; bottom: 20px; }
  .guide-section { padding: 68px 16px; }
  .mail-section, .folklore-section { padding: 54px 16px 70px; }
  .mail-month-control { align-items: stretch; flex-direction: column; gap: 10px; }
  .mail-month-control select { width: 100%; min-width: 0; }
  .section-heading { display: block; margin-bottom: 26px; }
  .section-heading > p { margin-top: 16px; }
  .month-ribbon { display: none; }
  .month-select-label { display: block; color: #87573c; font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 7px; }
  .month-select { display: block; width: 100%; appearance: none; padding: 14px 45px 14px 15px; border: 1px solid rgba(67, 49, 44, 0.28); border-radius: 0; background: rgba(255,255,255,0.35) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%236b5146' d='m5 7 5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 14px center / 18px; color: #352a2a; }
  .month-card { margin-top: 18px; }
  .month-intro { padding: 28px 22px; gap: 20px; }
  .month-poem { font-size: 18px; }
  .season-seal { width: 78px; height: 78px; flex-basis: 78px; }
  .season-seal span { font-size: 22px; }
  .season-seal small { font-size: 7px; }
  .guide-copy, .moon-panel { padding: 32px 22px; }
  .pack-heading { padding: 32px 22px; }
  .pack-stamp { width: 68px; height: 68px; flex-basis: 68px; font-size: 13px; }
  .pack-layout { padding: 32px 22px; }
  .pack-journey { grid-template-columns: 1fr; }
  .journey-step { min-height: 0; }
  .return-to-pack { margin: 0 22px 28px; padding: 18px; }
  .personal-pathway { padding: 32px 22px 24px; }
  .pathway-section { width: calc(100% - 32px); padding: 54px 0 70px; }
  .practice-note { grid-template-columns: 1fr; gap: 8px; }
  .zodiac-mark { width: 60px; height: 60px; flex-basis: 60px; font-size: 28px; }
  .recommendation-grid { grid-template-columns: 1fr; }
  .phase-tabs { grid-template-columns: repeat(2, 1fr); }
  .reflection-section { width: calc(100% - 32px); padding: 70px 0; }
  .reflection-card { padding: 34px 22px; }
  .reflection-heading { display: block; }
  .saved-status { display: block; margin-top: 12px; }
  .journal-actions { align-items: stretch; flex-direction: column; gap: 4px; }
  footer { padding: 28px 0; min-height: 120px; flex-direction: column; justify-content: center; gap: 12px; text-align: center; }
  .sign-reveal { padding: 16px; }
  .sign-reveal-card { padding: 42px 22px 28px; }
  .reveal-guidance { font-size: 17px; }
  .reveal-actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

.member-section { width: min(100% - 64px, 1180px); margin: 0 auto; padding: 82px 0 110px; min-height: 70vh; }
.member-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.member-card { padding: clamp(26px, 4vw, 52px); border: 1px solid rgba(242,223,181,.27); border-radius: 32px 8px 32px 8px; background: linear-gradient(145deg, #473044, #30232f); color: var(--ink); }
.member-card.featured { background: linear-gradient(145deg, #583849, #382632); border-color: rgba(242,223,181,.58); }
.member-card h3, .personal-space h3 { margin: 14px 0 18px; font: 600 clamp(29px, 4vw, 43px)/1.1 var(--serif); }
.member-card p, .personal-space p { max-width: 52ch; color: var(--muted); font-size: 16px; line-height: 1.7; }
.member-card .member-foot { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--gold-soft); }
.member-notice { margin: 24px 0 44px; padding: 23px 28px; border-left: 3px solid var(--gold); background: rgba(242,223,181,.09); }
.member-notice strong { color: var(--gold-soft); font-size: 17px; }
.member-notice p { margin: 7px 0 0; color: var(--muted); line-height: 1.6; }
.personal-space { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 34px clamp(26px, 4vw, 52px); border: 1px solid var(--line); border-radius: 8px 30px 8px 30px; }
.personal-space h3 { margin-bottom: 9px; }
.personal-emblem { color: var(--gold); font-size: 80px; }
@media (max-width: 700px) { .member-section { width: calc(100% - 32px); padding: 54px 0 76px; } .member-grid { grid-template-columns: 1fr; } .personal-emblem { font-size: 48px; } }

.release-card { margin-top: 32px; padding: clamp(30px, 6vw, 70px); border: 1px solid rgba(242,223,181,.5); border-radius: 36px 8px 36px 8px; background: radial-gradient(circle at 90% 10%, rgba(183,112,145,.2), transparent 38%), #382938; color: var(--ink); }
.release-card h3 { margin: 18px 0; font: 600 clamp(32px, 5vw, 52px)/1.1 var(--serif); }
.release-card p { max-width: 58ch; color: var(--muted); font-size: 17px; line-height: 1.7; }
.release-card .release-countdown { margin: 30px 0 0; padding-top: 22px; border-top: 1px solid var(--line); color: var(--gold-soft); font-size: 19px; }

/* Lighter celestial direction, with seasonal artwork kept inside each chapter. */
:root { color-scheme: light; --paper: #fffaf0; --gold: #b58243; --gold-soft: #f3dfb4; }
body { color: #342438; background: #fffaf1; }
body::before { opacity: .13; }
.ambient { display: none; }
.site-header { border-bottom-color: #d8b985; }
.brand-mark { color: #684267; border-color: #c79a55; }
.brand small, .site-nav a, .mobile-nav a { color: #5b4654; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fffaf1; background: #4a2940; }
.hero { width: min(1300px, calc(100% - 48px)); min-height: 830px; padding: 88px 0 72px; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: 0; right: 0; width: 62%; height: 550px; background: url("assets/celestial-welcome.png") center / cover no-repeat; z-index: -1; mask-image: linear-gradient(to right, transparent 0%, black 27%); }
.hero > :not(.hero-moon) { position: relative; }
.hero-moon { display: none; }
.hero h1 { max-width: 660px; color: #39233a; font-size: clamp(55px, 6vw, 88px); line-height: 1.03; letter-spacing: -.045em; }
.hero .eyebrow, .hero .mini-label, .member-section > .section-heading .eyebrow { color: #8a5c42; }
.hero-copy { max-width: 530px; color: #53434b; font: 21px/1.48 var(--serif); }
.sign-entry { width: min(580px, 55%); margin-top: 18px; background: rgba(255,250,242,.92); border: 1px solid #dfc9a6; box-shadow: 0 14px 38px #38263817; backdrop-filter: blur(6px); }
.sign-entry h2 { color: #3b293c; }
.sign-entry p, .sign-control small { color: #5f5355; font-size: 14px; }
.sign-control label { color: #704a40; font-size: 12px; }
.sign-control select { color: #342438; background: #fffdf7; border-color: #cdb896; }
.primary-link { color: #fff8f1; background: #482c43; border: 1px solid #b88756; }
.primary-link:hover { background: #65405a; }
.welcome-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; width: 100%; margin-top: 78px; }
.welcome-card { display: flex; flex-direction: column; min-height: 240px; padding: 25px 28px; border: 1px solid #cfa974; border-radius: 8px 25px 8px 25px; background: #fcf4e6; color: #3b293b; text-decoration: none; box-shadow: 0 15px 32px #50332112; transition: transform .18s, box-shadow .18s; }
.welcome-card:hover { transform: translateY(-4px); box-shadow: 0 22px 42px #50332122; }
.welcome-card .mini-label { color: #8e5f45; font-size: 12px; }
.welcome-card strong { max-width: 17ch; font: 600 clamp(25px, 2.5vw, 35px)/1.08 var(--serif); }
.welcome-card span:not(.mini-label) { max-width: 28ch; margin-top: 15px; font: 16px/1.45 var(--serif); }
.welcome-card em { margin-top: auto; padding-top: 18px; color: #62344c; font: 600 14px var(--sans); font-style: normal; }
.october-card { background: #fbf1de url("assets/october-card.png") center / cover no-repeat; padding-left: 45%; }
.november-card { background: radial-gradient(circle at 20% 56%, #e2c58b 0 7%, transparent 7.3%), radial-gradient(circle at 23% 55%, #fbf3e5 0 7%, transparent 7.3%), #fbf3e5; }
.pathway-card { background: linear-gradient(125deg,#ece4db,#fbf6ec 60%,#efe4d5); }
.guide-section, .mail-section, .folklore-section { background: linear-gradient(180deg,#fffaf1,#f6eddd); color: #3a2b36; }
.guide-section .eyebrow, .mail-page-heading .eyebrow, .folklore-section .eyebrow { color: #865c44; }
.month-card, .folklore-card, .mail-month-control { background: #fffdf7; border-color: #ddc7a5; }
.month-intro { background: linear-gradient(120deg,#fbf3e4,#fffcf6); }
.pack-companion { background: #fbf3e5; }
.pathway-section, .reflection-section, .member-section { color: #352737; }
.pathway-page-heading h2, .pathway-page-heading > p { color: #352737; }
.pathway-section .eyebrow, .reflection-section .eyebrow { color: #865c44; }
.pathway-empty { background: #fffdf7; border-color: #ddc7a5; }
.pathway-empty p { color: #5e4f57; }
.reflection-card { background: #fffdf7; border-color: #ddc7a5; box-shadow: 0 18px 50px #6b452218; }
.reflection-card .prompt, .reflection-card .privacy-copy { color: #5c5051; }
.reflection-card .journal-label, .reflection-card .saved-status { color: #795841; }
.reflection-card textarea { background: #fffaf1; border-color: #cdb896; color: #332739; }
.reflection-card .clear-button { color: #60485b; }
.member-section > .section-heading > p { color: #66545a; }
footer { color: #674d5c; border-color: #d8b985; }
.mobile-nav { background: #fffaf1; border-color: #d8b985; }
.mobile-nav a { border-color: #decba8; }
.menu-toggle { color: #503349; border-color: #bb955c; }
@media (max-width: 900px) {
  .site-nav { gap: 0; }
  .site-nav a { padding: 8px 6px; font-size: 11px; }
  .hero::before { width: 68%; height: 480px; }
  .welcome-cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .pathway-card { grid-column: span 2; }
}
@media (max-width: 620px) {
  .hero { min-height: 0; padding: 270px 0 58px; }
  .hero::before { top: 0; width: 100%; height: 250px; mask-image: linear-gradient(to bottom,black 68%,transparent); }
  .hero h1 { font-size: clamp(44px,12vw,62px); }
  .hero-copy { max-width: 100%; font-size: 18px; }
  .sign-entry { width: 100%; }
  .welcome-cards { grid-template-columns: 1fr; margin-top: 54px; }
  .pathway-card { grid-column: auto; }
  .welcome-card { min-height: 210px; }
  .october-card { padding-left: 48%; }
}
.hero { z-index: 0; }
.hero .eyebrow { font-size: 13px; }
@media (max-width: 620px) { .hero { width: min(100% - 32px, 1300px); } }

/* Carry the printed stationery's cream, fine gold and celestial detail across the guide. */
.guide-section, .mail-section, .folklore-section { background: #fffaf1; }
.guide-section .section-heading, .mail-section .section-heading, .folklore-section .section-heading,
.pathway-section .section-heading, .member-section .section-heading {
  position: relative; isolation: isolate; overflow: hidden; min-height: 180px;
  align-items: center; padding: 30px clamp(25px,4vw,48px); border: 1px solid #dec69e;
  border-radius: 7px 30px 7px 30px; background: #fcf4e7;
}
.guide-section .section-heading::before, .mail-section .section-heading::before,
.folklore-section .section-heading::before, .pathway-section .section-heading::before,
.member-section .section-heading::before {
  content: ""; position: absolute; z-index: -1; inset: 0 0 0 48%;
  background: url("assets/celestial-welcome.png") center 44% / cover no-repeat;
  opacity: .34; mask-image: linear-gradient(to right,transparent,black 65%);
}
.section-heading h2 { color: #37283b; line-height: 1.06; }
.section-heading > p { color: #5b4d50; font-size: 16px; }
.section-heading .eyebrow { color: #885d44; font-size: 13px; }
.month-ribbon { border-color: #d5bd95; }
.month-tab { color: #4d3c44; font-size: 13px; }
.month-tab[aria-selected="true"] { background: #493045; color: #fff9ee; }
.month-card { border-color: #d8bd95; box-shadow: 0 17px 42px #50332113; }
.month-intro { border-bottom-color: #d8bd95; }
.month-intro h3 { color: #39273b; }
.guide-grid p, .folklore-body p { font-size: 16px; }
.guide-grid .mini-label, .month-number { color: #825b41; font-size: 13px; }
.season-seal { border-color: #b98d54; }
.season-seal span { color: #72506a; }
.season-seal small { font-size: 12px; }
.moon-panel { background: #422d42; }
.phase-tab { font-size: 13px; }
.mail-month-control { border-color: #d8bd95; background: #fffdf7; }
.mail-month-control label { font-size: 13px; }
.pack-companion { border-color: #d8bd95; }
.pack-heading { background: #4b3241; }
.pack-companion[data-pack="october"] .pack-heading { background: linear-gradient(95deg,#382737 0%,#593b42 58%,#9a6c42 100%); }
.october-glimpse { display: grid; grid-template-columns: minmax(0,1fr) minmax(220px,280px); align-items: center; gap: 32px; padding: 28px 40px; background: linear-gradient(115deg,#392c36,#634036 85%); color: #fff7e9; }
.october-glimpse .mini-label { color: #e8bd78; letter-spacing: .14em; text-transform: uppercase; }
.october-glimpse h4 { margin: 10px 0; font: 500 clamp(25px,3vw,38px)/1.1 var(--serif); }
.october-glimpse p { max-width: 43ch; margin: 0; color: #eaded2; font: 16px/1.55 var(--serif); }
.october-glimpse video { display: block; width: 100%; max-height: 360px; aspect-ratio: 9/16; margin: auto; border: 1px solid #b88d58; border-radius: 7px; background: #2b2029; object-fit: contain; box-shadow: 0 15px 35px #170e1780; }
@media (max-width: 650px) { .october-glimpse { grid-template-columns: 1fr; padding: 28px 22px; gap: 18px; } .october-glimpse video { max-height: 430px; } }
.pack-layout { background: #fffaf0; }
.pack-item p, .journey-step p { font-size: 14px; }
.journey-step span { font-size: 12px; }
.return-to-pack p { font-size: 15px; }
.folklore-card { border-color: #d8bd95; background: #fffdf7; }
.folklore-body section { border-color: #e4d3b8; }
.folklore-sources { border-color: #e4d3b8; }
.personal-pathway { background: linear-gradient(135deg,#483147,#342538); border-color: #bd9a67; }
.pathway-empty { background: #fffdf7; border-color: #d8bd95; }
.recommendation-card span { font-size: 12px; }
.recommendation-card p, .practice-note p { font-size: 15px; }
.recommendation-card small, .pathway-note { font-size: 13px; }
.reflection-card { background: #fffdf7; }
.reflection-heading { padding-bottom: 26px; border-bottom: 1px solid #d8bd95; }
.reflection-heading h2 { color: #3b2a3c; }
.reflection-card .eyebrow { color: #8b6345; font-size: 13px; }
.reflection-card .prompt { color: #4d4149; }
.reflection-card .prompt span, .reflection-card .journal-label { color: #835b3d; font-size: 12px; }
.reflection-card textarea { font-size: 16px; }
.reflection-card .privacy-copy { font-size: 13px; }
.member-card { background: #fffdf7; color: #3d2b3e; border-color: #d8bd95; box-shadow: 0 14px 35px #50332112; }
.member-card.featured { background: linear-gradient(135deg,#fbf1e2,#eee1d3); border-color: #be9156; }
.member-card .mini-label { color: #8b5f43; font-size: 13px; }
.member-card p, .personal-space p { color: #5d4d53; }
.member-card .member-foot { color: #704b59; border-color: #dcc6a5; }
.member-notice { background: #f5ebdb; border-color: #b9874d; }
.member-notice strong { color: #543644; }
.member-notice p { color: #55464c; }
.personal-space { background: #fffdf7; border-color: #d8bd95; }
.personal-space .mini-label { color: #8b5f43; }
.personal-emblem { color: #a87543; }
.release-card { background: linear-gradient(90deg,#3d2b40e8,#3d2b40ce),url("assets/celestial-welcome.png") center / cover; }
@media (max-width: 700px) {
  .guide-section .section-heading, .mail-section .section-heading, .folklore-section .section-heading,
  .pathway-section .section-heading, .member-section .section-heading { min-height: 0; padding: 28px 23px; }
  .section-heading::before { opacity: .15 !important; }
  .section-heading > p { max-width: 100%; }
}

/* Each month keeps its own seasonal colour without revealing future pack themes. */
.guide-section[data-month="january"] { --month-tint:#e8eff2; --month-accent:#547484; }
.guide-section[data-month="february"] { --month-tint:#eef0e6; --month-accent:#6f8061; }
.guide-section[data-month="march"] { --month-tint:#edf3e6; --month-accent:#66805a; }
.guide-section[data-month="april"] { --month-tint:#ecf3e9; --month-accent:#5d806e; }
.guide-section[data-month="may"] { --month-tint:#f5e9ea; --month-accent:#a06072; }
.guide-section[data-month="june"] { --month-tint:#f9f0d9; --month-accent:#a67a36; }
.guide-section[data-month="july"] { --month-tint:#f9eddc; --month-accent:#a06c3b; }
.guide-section[data-month="august"] { --month-tint:#f7eddb; --month-accent:#9b6d40; }
.guide-section[data-month="september"] { --month-tint:#f2ebdf; --month-accent:#896b47; }
.guide-section[data-month="october"] { --month-tint:#f7e9d6; --month-accent:#9c623b; }
.guide-section[data-month="november"] { --month-tint:#eee7ed; --month-accent:#76546f; }
.guide-section[data-month="december"] { --month-tint:#e9edf0; --month-accent:#60768a; }
.guide-section .month-intro { background: linear-gradient(110deg,var(--month-tint),#fffdf7 75%); }
.guide-section .month-number, .guide-section .season-seal span, .guide-section .guide-grid .mini-label { color: var(--month-accent); }
.guide-section .season-seal { border-color: var(--month-accent); }

/* The selected month transforms the guide's landscape and surrounding season. */
.guide-section[data-season="winter"] { --season-art:url("assets/season-winter.png"); --season-ground:#edf2f5; --season-dark:#354c63; --season-line:#94aabd; }
.guide-section[data-season="spring"] { --season-art:url("assets/season-spring.png"); --season-ground:#edf4e9; --season-dark:#466b5b; --season-line:#93b39a; }
.guide-section[data-season="summer"] { --season-art:url("assets/season-summer.png"); --season-ground:#fbf2dd; --season-dark:#766047; --season-line:#c9a96c; }
.guide-section[data-season="autumn"] { --season-art:url("assets/season-autumn.png"); --season-ground:#f7ecdf; --season-dark:#63434a; --season-line:#b68c6b; }
.guide-section { background: linear-gradient(180deg,var(--season-ground),#fffaf1 85%); transition: background-color .25s ease; }
.guide-section .section-heading { min-height: 255px; border-color: var(--season-line); background: #fffaf1; }
.guide-section .section-heading::before { inset: 0; opacity: 1; background: var(--season-art) center / cover no-repeat; mask-image: none; }
.guide-section .section-heading > div { max-width: 58%; }
.guide-section .section-heading > p { max-width: 310px; padding: 14px; border-radius: 10px; background: #fffaf1d9; }
.guide-section .section-heading h2 { font-size: clamp(48px,6vw,76px); }
.guide-section .month-ribbon { border-color: var(--season-line); }
.guide-section .month-tab[aria-selected="true"] { background: var(--season-dark); }
.guide-section .month-card { border-color: var(--season-line); }
.guide-section .month-intro { min-height: 195px; background: linear-gradient(110deg,var(--month-tint),#fffdf7 75%); border-color: var(--season-line); }
.guide-section .season-seal { background: #fffdf7bb; }
.guide-section .moon-panel { background: var(--season-dark); }
.guide-section .ritual { border-color: var(--season-line); background: color-mix(in srgb,var(--season-ground) 78%,white); }
@media (max-width: 700px) {
  .guide-section .section-heading { min-height: 280px; padding: 26px 23px; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; background: var(--season-art) center / cover no-repeat; }
  .guide-section .section-heading::before { display: none; }
  .guide-section .section-heading > div, .guide-section .section-heading > p { max-width: min(100%,430px); margin: 0; padding: 12px; background: #fffaf1e8; border-radius: 8px; }
  .guide-section .section-heading > p { margin-top: 8px; }
}
/* Mystic Mail gift redemption */
.redeem-section { max-width: 1000px; margin: 0 auto; padding: clamp(35px, 6vw, 78px) 24px 90px; }
.redeem-intro { max-width: 650px; margin-bottom: 26px; }
.redeem-intro h2 { font-family: Georgia, serif; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.12; margin: 8px 0 14px; color: #3b293e; }
.redeem-intro p { line-height: 1.6; }
.redeem-card { background: #fbf7ef; border: 1px solid #c8ad81; border-radius: 20px; padding: clamp(22px, 4vw, 46px); box-shadow: 0 18px 55px #3b293e16; color: #3b293e; }
.redeem-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.redeem-fields label { display: flex; flex-direction: column; gap: 8px; font-size: 1rem; font-weight: 600; }
.redeem-fields .wide { grid-column: 1 / -1; }
.redeem-card input:not([type="radio"]), .redeem-card textarea { box-sizing: border-box; width: 100%; border: 1px solid #bcaab7; border-radius: 9px; background: white; color: #332a32; font: inherit; padding: 12px 14px; }
.redeem-card input:focus-visible, .redeem-card textarea:focus-visible { outline: 3px solid #b693b9; outline-offset: 2px; }
.redeem-card fieldset { border: 0; padding: 0; margin: 26px 0 12px; display: grid; gap: 12px; }
.redeem-card legend { font-weight: 700; margin-bottom: 12px; }
.redeem-card fieldset label { display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.redeem-card input[type="radio"] { accent-color: #70466d; width: 19px; height: 19px; margin: 2px 0 0; flex: none; }
.redeem-note { line-height: 1.55; font-size: .95rem; }
.voucher-showcase { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); gap: clamp(22px, 5vw, 70px); align-items: center; padding: clamp(28px, 5vw, 58px); border: 1px solid #d5b98b; border-radius: 26px; background: radial-gradient(circle at 76% 38%, #fff9ec 0, #f4e8d6 60%, #ead9c6 100%); box-shadow: 0 22px 55px #5139481a; overflow: hidden; }
.voucher-showcase-copy { position: relative; z-index: 1; }
.voucher-showcase-copy .eyebrow { color: #825c49; }
.voucher-showcase-copy h3 { margin: 8px 0 16px; color: #45304b; font: 600 clamp(1.8rem, 3.1vw, 2.8rem)/1.12 var(--serif); }
.voucher-showcase-copy > p:last-child { max-width: 36ch; color: #584a51; font-size: 1rem; line-height: 1.65; }
.voucher-stage { position: relative; min-height: clamp(250px, 29vw, 380px); perspective: 1100px; isolation: isolate; }
.voucher-preview { position: absolute; display: block; width: min(74%, 470px); height: auto; border-radius: 3px; border: 1px solid #bd985d; box-shadow: 0 20px 25px #3d2c3545, 0 38px 55px #3d2c352e; backface-visibility: hidden; }
.voucher-preview-back { top: 1%; right: 0; transform: rotate(-5deg) rotateY(-13deg) translateZ(-12px); }
.voucher-preview-front { bottom: 0; left: 0; z-index: 1; transform: rotate(5deg) rotateY(11deg) translateZ(18px); }
@media (max-width: 760px) { .voucher-showcase { grid-template-columns: 1fr; padding: 28px 22px 34px; } .voucher-stage { min-height: clamp(240px, 61vw, 430px); } .voucher-preview { width: 72%; } }
@media (prefers-reduced-motion: reduce) { .voucher-preview { transform: none; } }
#redeem-result { min-height: 1.5em; font-weight: 600; line-height: 1.5; }
@media (max-width: 640px) { .redeem-fields { grid-template-columns: 1fr; } }
