:root {
  --paper: #f7f2e9;
  --paper-deep: #ece4d6;
  --ink: #20211d;
  --muted: #706e66;
  --coral: #ef674f;
  --coral-dark: #d64e39;
  --yellow: #f1c84d;
  --blue: #628ca0;
  --green: #68765a;
  --line: rgba(32, 33, 29, 0.17);
  --serif: "DM Serif Display", "Songti SC", "STSong", serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --shadow: 0 18px 50px rgba(38, 30, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 15;
  top: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  display: block;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  transform: rotate(-2deg);
  border: 1px solid rgba(32, 33, 29, 0.72);
  border-radius: 48% 52% 47% 53% / 52% 45% 55% 48%;
  background: var(--coral);
  box-shadow: 3px 3px 0 var(--yellow);
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.logo-petal {
  fill: var(--paper);
  stroke: var(--paper);
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.logo-ring,
.logo-stem {
  fill: none;
  stroke: var(--paper);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.logo-seed {
  fill: var(--yellow);
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.brand-name strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-name small {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.055em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 60px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
  background: var(--coral);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-button,
.footer-links button {
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(32, 33, 29, 0.12);
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 13px;
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-coral {
  color: #fffaf1;
  background: var(--coral);
}

.button-coral:hover {
  background: var(--coral-dark);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

.button-yellow {
  width: 100%;
  background: var(--yellow);
}

.hero {
  display: grid;
  min-height: 735px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 55px;
  padding-top: 62px;
  padding-bottom: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--coral);
}

.hero h1,
.section-heading h2,
.tarot h2,
.call-copy h2,
.membership-layout h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(60px, 5.7vw, 82px);
  line-height: 0.98;
}

.hero h1 em,
.tarot h2 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-intro {
  max-width: 520px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 37px;
}

.trust-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.trust-row strong {
  color: var(--ink);
}

.launch-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--coral);
  background: var(--yellow);
  font-size: 20px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-family: var(--serif);
  font-size: 12px;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--coral);
}

.avatar-stack span:nth-child(3) {
  background: var(--green);
}

.avatar-stack span:last-child {
  color: var(--ink);
  background: var(--yellow);
}

.hero-art {
  position: relative;
  min-height: 575px;
}

.sun-disc {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: var(--yellow);
}

.poster {
  position: absolute;
  z-index: 2;
  top: 68px;
  right: 95px;
  width: 315px;
  min-height: 405px;
  padding: 36px;
  transform: rotate(3deg);
  border: 1px solid var(--ink);
  background: #eee8dc;
  box-shadow: 12px 13px 0 var(--ink);
}

.poster::after {
  position: absolute;
  top: -15px;
  left: 125px;
  width: 70px;
  height: 26px;
  content: "";
  transform: rotate(-4deg);
  background: rgba(255, 255, 255, 0.58);
}

.poster-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.poster p {
  margin: 70px 0 45px;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.18;
}

.poster p em {
  color: var(--coral);
  font-size: 27px;
  font-weight: 400;
}

.poster-sign {
  padding-top: 14px;
  border-top: 1px solid var(--ink);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.note-card {
  position: absolute;
  z-index: 3;
  padding: 20px;
  box-shadow: var(--shadow);
}

.note-one {
  bottom: 30px;
  left: 5px;
  width: 275px;
  transform: rotate(-4deg);
  background: #fffdf7;
}

.note-one > span,
.note-one > div {
  color: var(--muted);
  font-size: 10px;
}

.note-one p {
  margin: 10px 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
}

.note-two {
  top: 30px;
  left: 25px;
  width: 180px;
  transform: rotate(-8deg);
  color: var(--paper);
  background: var(--blue);
}

.note-two p {
  margin: 10px 0 4px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.mini-flower {
  color: var(--yellow);
  font-size: 24px;
}

.scribble {
  position: absolute;
  z-index: 4;
  color: var(--coral);
  font-family: cursive;
  font-size: 14px;
}

.scribble-one {
  top: 8px;
  right: 29px;
  transform: rotate(10deg);
}

.scribble-two {
  right: 2px;
  bottom: 30px;
  transform: rotate(-12deg);
}

.marquee {
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(-1deg) scale(1.01);
  color: var(--paper);
  background: var(--coral);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 31px;
  animation: marquee 25s linear infinite;
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.05em;
}

.marquee-track i {
  color: var(--yellow);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.treehole {
  padding-top: 130px;
  padding-bottom: 130px;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading h2,
.tarot h2,
.call-copy h2,
.membership-layout h2 {
  font-size: clamp(45px, 5vw, 72px);
  line-height: 1.05;
}

.filter-row {
  display: flex;
  overflow-x: auto;
  gap: 7px;
  margin: 43px 0 26px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.demo-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: -7px 0 24px;
  padding: 15px 18px;
  border-left: 3px solid var(--yellow);
  background: rgba(241, 200, 77, 0.14);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.demo-notice span {
  color: var(--coral);
}

.demo-notice p {
  margin: 0;
}

.demo-notice strong {
  color: var(--ink);
}

.filter {
  flex: 0 0 auto;
  padding: 8px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.filter.active {
  color: var(--paper);
  background: var(--ink);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.post-card {
  min-height: 300px;
  padding: 31px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.6);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.post-featured {
  background: #fbf3da;
}

.post-dark {
  color: var(--paper);
  background: var(--ink);
}

.post-card.hidden {
  display: none;
}

.post-topline,
.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-topline {
  color: var(--muted);
  font-size: 11px;
}

.post-dark .post-topline {
  color: rgba(247, 242, 233, 0.65);
}

.tag {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: #f0a593;
  font-size: 10px;
  font-weight: 700;
}

.tag-blue {
  background: #abc7d0;
}

.tag-yellow {
  background: #edd276;
}

.tag-light {
  background: var(--paper);
}

.post-card h3 {
  max-width: 600px;
  margin: 28px 0 15px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
}

.post-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.post-card blockquote {
  margin: 55px 0 40px;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.45;
}

.post-card blockquote em {
  display: block;
  margin-top: 15px;
  color: var(--yellow);
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}

.post-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.post-dark .post-footer {
  border-color: rgba(255, 255, 255, 0.16);
}

.post-footer button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.hug-button span {
  margin-right: 4px;
  color: var(--coral);
  font-size: 21px;
  vertical-align: -2px;
}

.hug-button.hugged span {
  display: inline-block;
  transform: scale(1.25);
  color: var(--coral);
}

.comment-button {
  color: var(--muted);
}

.post-dark .comment-button {
  color: rgba(247, 242, 233, 0.7);
}

.safety-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 12px;
}

.safety-note > span {
  color: var(--green);
  font-size: 17px;
}

.safety-note p {
  margin: 0;
}

.safety-note strong {
  color: var(--ink);
}

.safety-note button {
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.letters {
  padding: 125px 0 140px;
  color: var(--paper);
  background: var(--ink);
}

.eyebrow-light {
  color: #c8c2b8;
}

.section-lede {
  max-width: 395px;
  margin: 0 0 7px;
  color: #aaa69f;
  font-size: 14px;
  line-height: 1.9;
}

.article-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  margin-top: 55px;
}

.editorial-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.editorial-large {
  grid-row: span 2;
}

.editorial-image {
  position: relative;
  overflow: hidden;
  min-height: 230px;
}

.editorial-large .editorial-image {
  min-height: 395px;
}

.illustration-anger {
  display: grid;
  place-items: center;
  background: var(--coral);
}

.big-type {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(120px, 16vw, 210px);
  letter-spacing: -0.12em;
  line-height: 1;
}

.match {
  position: absolute;
  width: 8px;
  height: 135px;
  transform: rotate(31deg);
  background: #f2d895;
}

.match::before {
  position: absolute;
  top: -13px;
  left: -6px;
  width: 20px;
  height: 26px;
  content: "";
  border-radius: 60% 60% 45% 45%;
  background: var(--ink);
}

.match-one {
  top: -15px;
  left: 13%;
}

.match-two {
  right: 12%;
  bottom: -30px;
}

.illustration-boundary {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--blue);
  font-family: var(--serif);
  font-size: 20px;
}

.door-shape {
  width: 95px;
  height: 160px;
  border: 4px solid var(--ink);
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
  box-shadow: inset -30px 0 rgba(247, 242, 233, 0.7);
}

.illustration-alone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  color: var(--paper);
  background: #454e3f;
  font-family: var(--serif);
  font-size: 25px;
}

.moon {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 22px -11px 0 #454e3f;
}

.editorial-copy {
  padding: 28px 31px 32px;
}

.editorial-copy > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.editorial-copy h3 {
  margin: 15px 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.3;
}

.editorial-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.read-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
  padding: 15px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.read-link span {
  font-size: 18px;
  transition: transform 160ms ease;
}

.editorial-card:hover .read-link span {
  transform: translateX(5px);
}

.tarot {
  display: grid;
  min-height: 730px;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 65px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.tarot-copy p {
  max-width: 430px;
  margin: 27px 0;
  color: var(--muted);
  line-height: 1.9;
}

.tarot-copy small {
  display: block;
  max-width: 390px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 10px;
}

.tarot-stage {
  min-height: 480px;
  padding: 55px 28px 32px;
  background:
    radial-gradient(circle at center, rgba(241, 200, 77, 0.2), transparent 47%),
    var(--paper-deep);
}

.tarot-cards {
  display: flex;
  min-height: 340px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.tarot-card {
  position: relative;
  width: 155px;
  height: 270px;
  padding: 0;
  border: 0;
  transform-style: preserve-3d;
  background: transparent;
  cursor: pointer;
  transition:
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 300ms ease;
}

.tarot-card:nth-child(1) {
  transform: rotate(-8deg) translateY(17px);
}

.tarot-card:nth-child(3) {
  transform: rotate(8deg) translateY(17px);
}

.tarot-card:hover {
  transform: translateY(-10px) rotate(0);
}

.tarot-card.revealed {
  transform: rotateY(180deg) scale(1.1);
}

.tarot-card.faded {
  opacity: 0.2;
}

.card-back,
.card-front {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 8px solid #263025;
  backface-visibility: hidden;
  box-shadow:
    inset 0 0 0 2px var(--yellow),
    var(--shadow);
}

.card-back {
  color: var(--yellow);
  background:
    repeating-radial-gradient(circle at center, transparent 0 13px, rgba(241, 200, 77, 0.22) 14px 15px),
    #263025;
}

.card-back::after {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(241, 200, 77, 0.75);
  content: "";
}

.card-back i {
  font-size: 54px;
  font-style: normal;
}

.card-back b {
  margin-top: 27px;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
}

.card-front {
  padding: 18px;
  transform: rotateY(180deg);
  color: var(--ink);
  background: #f3df97;
  text-align: center;
}

.card-front .tarot-symbol {
  font-size: 57px;
}

.card-front strong {
  display: block;
  margin: 17px 0 5px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.card-front small {
  font-size: 10px;
  line-height: 1.6;
}

.tarot-hint {
  margin: 25px 0 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
}

.call-section {
  padding: 130px 0;
  background: #ddd4c5;
}

.call-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.call-portrait {
  position: relative;
  max-width: 480px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  height: 590px;
  background: var(--coral);
  box-shadow: 15px 15px 0 var(--ink);
}

.portrait-sun {
  position: absolute;
  top: 50px;
  right: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--yellow);
}

.portrait-figure {
  position: absolute;
  right: 35px;
  bottom: 0;
  left: 35px;
  height: 450px;
}

.portrait-figure .head {
  position: absolute;
  z-index: 2;
  top: 50px;
  left: 48%;
  width: 140px;
  height: 175px;
  transform: translateX(-50%);
  border-radius: 46% 46% 43% 45%;
  background: #d79973;
}

.portrait-figure .hair {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 48%;
  width: 220px;
  height: 285px;
  transform: translateX(-50%);
  border-radius: 48% 48% 35% 35%;
  background: #20211d;
}

.portrait-figure .body {
  position: absolute;
  right: 20px;
  bottom: -80px;
  left: 20px;
  height: 290px;
  border-radius: 48% 48% 0 0;
  background: var(--blue);
}

.portrait-copy {
  position: absolute;
  z-index: 4;
  right: 23px;
  bottom: 22px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 0.98;
  text-align: right;
}

.portrait-copy em {
  color: var(--yellow);
  font-size: 20px;
}

.available-sticker {
  position: absolute;
  z-index: 6;
  top: -28px;
  right: -35px;
  display: grid;
  width: 105px;
  height: 105px;
  place-content: center;
  transform: rotate(9deg);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-size: 11px;
  text-align: center;
}

.available-sticker strong {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 23px;
}

.founder-note {
  margin: 26px 0 34px;
  color: #5e5b55;
  line-height: 1.9;
}

.call-benefits {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.call-benefits li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.call-benefits span {
  color: var(--coral);
  font-family: var(--serif);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.price-row strong {
  font-family: var(--serif);
  font-size: 47px;
  font-weight: 400;
}

.price-row span {
  color: var(--muted);
  font-size: 11px;
}

.disclaimer {
  color: var(--muted);
  font-size: 9px;
}

.membership-band {
  padding: 95px 0;
  color: var(--paper);
  background: var(--coral);
}

.membership-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 100px;
}

.membership-kicker {
  display: block;
  margin-bottom: 23px;
  color: #ffd7cf;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.membership-layout h2 {
  font-size: clamp(48px, 6vw, 78px);
}

.membership-card {
  padding: 35px 40px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.membership-price {
  display: flex;
  align-items: flex-start;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.membership-price > span {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: 24px;
}

.membership-price strong {
  font-family: var(--serif);
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
}

.membership-price em {
  align-self: flex-end;
  margin: 0 0 8px 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.membership-card ul {
  display: grid;
  gap: 13px;
  margin: 25px 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.membership-card li::before {
  margin-right: 10px;
  color: var(--coral);
  content: "✦";
}

.membership-card small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

footer {
  padding: 80px 0 25px;
  background: #171814;
  color: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
}

.footer-brand p {
  margin-top: 20px;
  color: #8e8e86;
  font-family: var(--serif);
  font-size: 18px;
}

.footer-brand .brand-name small {
  color: var(--yellow);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: #aaa89f;
  font-size: 11px;
}

.footer-links a,
.footer-links button {
  padding: 0;
  color: #d5d2c9;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6f7069;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.mobile-nav {
  display: none;
}

.modal-backdrop {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(19, 19, 16, 0.76);
  backdrop-filter: blur(7px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  overflow-y: auto;
  width: min(600px, 100%);
  max-height: min(820px, calc(100vh - 40px));
  padding: 42px;
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--coral);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 17px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--paper-deep);
  font-size: 24px;
  cursor: pointer;
}

.modal-kicker {
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.modal h2 {
  margin: 10px 0 13px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
}

.modal-description {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.form-field {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.form-field label,
.form-field > span {
  font-size: 12px;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: #fffdf8;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
  line-height: 1.7;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(239, 103, 79, 0.12);
}

.form-message {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.form-message.error {
  color: #b83d2d;
}

.auth-success {
  text-align: center;
}

.auth-success-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 20px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--coral);
  background: var(--yellow);
  font-size: 28px;
}

.auth-email {
  margin: 20px 0;
  padding: 13px;
  border: 1px solid var(--line);
  background: #fffdf8;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.auth-tip {
  padding: 15px 18px;
  color: var(--muted);
  background: var(--paper-deep);
  font-size: 11px;
  line-height: 1.7;
  text-align: left;
}

.account-panel {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.account-panel span,
.account-panel strong,
.account-panel p {
  display: block;
}

.account-panel span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.account-panel strong {
  margin-top: 8px;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.account-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.choice-row {
  display: flex;
  gap: 8px;
  margin-top: 9px;
}

.choice-chip,
.time-chip {
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.choice-chip.active,
.time-chip.active {
  color: var(--paper);
  background: var(--ink);
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.modal-actions small {
  max-width: 260px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.plan-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.plan-option {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.plan-option.active {
  border: 2px solid var(--coral);
  background: #fff7ed;
}

.plan-option b,
.plan-option strong,
.plan-option span {
  display: block;
}

.plan-option b {
  font-size: 12px;
}

.plan-option strong {
  margin: 12px 0 4px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.plan-option span {
  color: var(--muted);
  font-size: 10px;
}

.plan-badge {
  position: absolute;
  top: -9px;
  right: 10px;
  padding: 3px 8px;
  color: var(--ink) !important;
  background: var(--yellow);
  font-weight: 800;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.modal-article {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.modal-article h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.modal-article blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--coral);
  color: var(--ink);
  background: var(--paper-deep);
  font-family: var(--serif);
  font-size: 20px;
}

.tarot-result {
  text-align: center;
}

.tarot-result-symbol {
  margin: 20px 0 5px;
  color: var(--coral);
  font-size: 72px;
}

.tarot-keywords {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
}

.tarot-keywords span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--paper-deep);
  font-size: 11px;
}

.tarot-message {
  padding: 22px;
  background: #fffaf0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  text-align: left;
}

.legal-list {
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.toast {
  position: fixed;
  z-index: 70;
  right: 25px;
  bottom: 25px;
  max-width: 330px;
  padding: 14px 18px;
  transform: translateY(120px);
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  transition:
    transform 250ms ease,
    opacity 250ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 25px;
  }

  .hero-art {
    min-height: 600px;
  }

  .posts-grid,
  .article-grid,
  .tarot,
  .call-layout,
  .membership-layout {
    grid-template-columns: 1fr;
  }

  .editorial-large {
    grid-row: auto;
  }

  .call-layout {
    gap: 80px;
  }

  .call-portrait {
    margin: 0 auto;
  }

  .membership-layout {
    gap: 45px;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 34px, 1180px);
  }

  body {
    padding-bottom: 66px;
  }

  .site-header {
    min-height: 64px;
    padding: 0 17px;
  }

  .site-header .brand {
    gap: 9px;
  }

  .site-header .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .site-header .brand-name strong {
    font-size: 13px;
  }

  .site-header .brand-name small {
    font-size: 7px;
  }

  .header-actions .text-button {
    display: none;
  }

  .header-actions .button {
    min-height: 36px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    gap: 15px;
    padding-top: 45px;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-art {
    min-height: 500px;
    margin-top: 20px;
  }

  .sun-disc {
    top: 45px;
    right: 5px;
    width: 310px;
    height: 310px;
  }

  .poster {
    top: 76px;
    right: 23px;
    width: 270px;
    min-height: 345px;
    padding: 28px;
  }

  .poster p {
    margin: 55px 0 35px;
    font-size: 36px;
  }

  .note-one {
    bottom: 0;
    left: 0;
    width: 230px;
  }

  .note-two {
    top: 3px;
    left: -4px;
    width: 145px;
    padding: 14px;
  }

  .note-two p {
    font-size: 18px;
  }

  .section-heading h2,
  .tarot h2,
  .call-copy h2 {
    font-size: 43px;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .treehole,
  .letters,
  .tarot,
  .call-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .post-card {
    min-height: auto;
    padding: 24px;
  }

  .safety-note {
    grid-template-columns: auto 1fr;
  }

  .safety-note button {
    grid-column: 2;
    text-align: left;
  }

  .article-grid {
    margin-top: 35px;
  }

  .editorial-large .editorial-image {
    min-height: 280px;
  }

  .tarot {
    gap: 45px;
  }

  .tarot-stage {
    min-height: 390px;
    padding: 40px 12px 25px;
  }

  .tarot-cards {
    min-height: 280px;
    gap: 7px;
  }

  .tarot-card {
    width: 96px;
    height: 180px;
  }

  .card-back,
  .card-front {
    border-width: 5px;
  }

  .card-back i {
    font-size: 35px;
  }

  .card-back b {
    margin-top: 18px;
    font-size: 8px;
  }

  .card-front {
    padding: 10px;
  }

  .card-front .tarot-symbol {
    font-size: 35px;
  }

  .card-front strong {
    font-size: 14px;
  }

  .portrait-frame {
    height: 470px;
  }

  .portrait-copy {
    font-size: 27px;
  }

  .available-sticker {
    right: -5px;
  }

  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .membership-layout h2 {
    font-size: 47px;
  }

  .membership-card {
    padding: 29px 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 67px;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(247, 242, 233, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    color: var(--muted);
    font-size: 9px;
  }

  .mobile-nav a span {
    color: var(--ink);
    font-size: 19px;
  }

  .mobile-nav > button {
    align-self: center;
    justify-self: center;
    width: 47px;
    height: 47px;
    transform: translateY(-13px);
    border: 0;
    border-radius: 50%;
    color: var(--paper);
    background: var(--coral);
    box-shadow: 0 8px 20px rgba(239, 103, 79, 0.35);
    font-size: 27px;
  }

  .modal {
    padding: 36px 23px 28px;
  }

  .modal h2 {
    font-size: 35px;
  }

  .plan-options {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .toast {
    right: 17px;
    bottom: 82px;
    left: 17px;
    max-width: none;
  }
}

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