:root { --ink: #211b15; --ink-soft: #56493d; --muted: #75695c; --paper: #fbf7ef; --paper-2: #f2eadc; --line: #ddceb3; --accent: #b07b36; --accent-deep: #875a24; --accent-dark: #533746; --accent-soft: #efe0c2; --gold: #b39165; --night: #090909; --white: #fffaf0; --shadow: 0 18px 48px rgba(30, 21, 9, 0.12); --shadow-soft: 0 14px 36px rgba(55, 38, 48, .08); --radius-xl: 34px; --radius-md: 18px; --shell: 1240px; --display: Georgia, "Times New Roman", serif; --gold-deep: #986127; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-size: 34px 34px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent-soft); color: var(--ink); }
a { color: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  background: var(--night);
  color: white;
  padding: 10px 14px;
  z-index: 1000;
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  pointer-events: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .015em;
  font-size: 1.06rem;
}

.site-nav {
  display: flex;
  align-items: center;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.site-nav a {
  position: relative;
  text-decoration: none;
}
.site-nav a:hover::after { left: 0; right: 0; }

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 8px 13px;
  font: inherit;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  align-items: center;
}

.eyebrow,
.mini-label {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-family: ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
}

h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 7vw, 6.75rem);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 500;
  text-wrap: balance;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 500;
  text-wrap: balance;
}
h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 600;
}

.hero-text {
  max-width: 675px;
  font-size: 1.16rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 22px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button-primary {
  background: var(--accent-deep);
  color: white;
  box-shadow: 0 9px 24px rgba(105,72,90,.18);
}
.button-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(105,72,90,.22); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.54); }
.button-secondary:hover { border-color: var(--accent); transform: translateY(-2px); background: rgba(255,255,255,.84); }

.quiet-note {
  max-width: 620px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .83rem;
}

.section { position: relative; }

.section-dark {
  overflow: hidden;
  color: var(--white);
}
.section-dark::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -160px;
  bottom: -220px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(255,255,255,.018), 0 0 0 72px rgba(255,255,255,.012);
}
.section-dark p { color: #d9d0d6; }
.section-heading p:last-child { font-size: 1.04rem; }
.section-heading.narrow { max-width: 710px; }
.section-heading.light p:last-child { color: #d7ced4; }
.ornate-heading::after {
  content: "✦  ·  ✦  ·  ✦";
  display: block;
  color: rgba(105,72,90,.34);
  font-size: .64rem;
  letter-spacing: .5em;
}

.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }

.reading-card {
  position: relative;
  min-height: 100%;
  padding: 32px 30px 30px;
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.reading-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(105,72,90,.055);
  border-radius: 15px;
  pointer-events: none;
}
.reading-card:hover { transform: translateY(-4px); border-color: #bda5b0; box-shadow: var(--shadow-soft); }
.reading-card.featured {
  background: linear-gradient(180deg, rgba(246,235,240,.92), rgba(255,253,249,.82));
}
.reading-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.reading-emblem {
  gap: 7px;
  align-items: center;
  min-height: 25px;
  margin-bottom: 17px;
  color: rgba(105,72,90,.34);
  font-size: .47rem;
  letter-spacing: .12em;
}
.reading-emblem.five { color: rgba(105,72,90,.45); font-size: .63rem; }
.reading-emblem.pairs { gap: 9px; font-size: .72rem; color: rgba(105,72,90,.38); }
.reading-card > p { color: var(--muted); }

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.pill {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.reading-cost {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  white-space: nowrap;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.price {
  color: var(--accent-deep);
  font-size: .85rem;
  font-weight: 800;
}
.cost-divider {
  font-size: .78rem;
}
.credit-price {
  color: var(--muted);
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .01em;
}
.reading-card.featured .credit-price {
  color: var(--accent-deep);
}
.clean-list {
  margin: 12px 0 25px;
  padding-left: 18px;
  color: #514952;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .89rem;
}
.clean-list li { margin: 7px 0; }
.text-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: var(--accent-deep);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.format-note {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.22), transparent 48%),
    var(--accent-soft);
  border: 1px solid rgba(105,72,90,.10);
}
.format-note h3 { margin-bottom: 0; }
.format-note > p { color: #5d5058; margin: 0; }
.muted { color: var(--muted); font-family: ui-sans-serif, system-ui, sans-serif; font-size: .87rem; }

.reflection-grid article {
  position: relative;
  padding: 29px;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.reflection-grid article::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.035);
  border-radius: 13px;
  pointer-events: none;
}
.reflection-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.reflection-grid h3 { color: var(--white); }
.reflection-grid p { margin-bottom: 0; }
.corner-label {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 8px;
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .61rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
}
.faq-list details { border-top: 1px solid #d3c4ca; }
.faq-list details:last-child { border-bottom: 1px solid #d3c4ca; }
.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 21px 34px 21px 0;
  font-size: 1.07rem;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-deep);
  font: 500 1.4rem/1 ui-sans-serif, system-ui, sans-serif;
}
.faq-list details[open] summary::after { content: "×"; }
.faq-list details p { padding: 0 38px 21px 0; margin: 0; color: var(--muted); }
.final-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgba(105,72,90,.10);
  background:
    radial-gradient(circle at 85% 30%, rgba(255,255,255,.42), transparent 12rem),
    linear-gradient(120deg, #ead8e0, #f1e6e7);
  overflow: hidden;
}
.final-cta-inner::before {
  content: "☾";
  position: absolute;
  right: 210px;
  top: -36px;
  color: rgba(105,72,90,.07);
  font-size: 9rem;
  line-height: 1;
}
.final-cta h2 { position: relative; z-index: 2; max-width: 760px; margin-bottom: 0; font-size: clamp(2.05rem, 4vw, 3.35rem); }
.final-cta .button { position: relative; z-index: 2; }

.site-footer {
  position: relative;
  padding: 58px 0 25px;
  color: #e8dfe4;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205,168,185,.28), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
}
.footer-brand { margin-bottom: 16px; color: white; }
.footer-grid p { max-width: 520px; font-family: ui-sans-serif, system-ui, sans-serif; font-size: .87rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 26px; }
.footer-links a { text-decoration: none; font-family: ui-sans-serif, system-ui, sans-serif; font-size: .84rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .75rem;
}

@media (max-width: 1040px) {
  .hero-grid { gap: 52px; }
}

@media (max-width: 980px) {
  .hero-grid,
.faq-layout { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { max-width: 800px; }
  .card-grid.three { grid-template-columns: 1fr; }
  .reading-card.featured { transform: none; }
  .reading-card.featured:hover { transform: translateY(-4px); }
  .format-note { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 760px) {
  .site-header { position: relative; }
  .menu-button { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(251,248,243,.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px; }
  .site-nav a::after { display: none; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; padding: 31px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  h1 { font-size: clamp(3.15rem, 17vw, 4.9rem); }
  .section { padding: 72px 0; }
  .reading-card { padding: 24px; }
  .button { width: 100%; }
  .hero-actions { display: grid; }
  .format-note { padding: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
*::before,
*::after { transition: none !important; }
}
@media (max-width: 420px) {
  .card-topline { align-items: flex-start; }
  .reading-cost { flex-wrap: wrap; justify-content: flex-end; gap: 4px 6px; }
}
.brand-logo {
  object-fit: contain;
  object-position: left center;
}
.hero-text { color: #d7ccbb; }
.reading-card::before { border-color: rgba(176, 123, 54, .12); }
.reading-card.featured {
  border-color: #b98542;
  box-shadow: 0 20px 50px rgba(84, 55, 23, .14);
}
.reading-emblem,
.reading-emblem.five,
.reading-emblem.pairs { color: rgba(139, 92, 37, .42); }
.pill { background: #f0dfbe; color: #775020; }
.price,
.credit-price,
.text-link { color: #8b5c25; }
.cost-divider { color: #b59a75; }
.format-note,
.final-cta-inner {
  background: linear-gradient(135deg, #f0dfbe 0%, #f6ead4 100%);
  border-color: #ddc59d;
}
.section-dark .eyebrow { color: #d1a05d; }
.reflection-grid article { border-color: rgba(214, 160, 90, .22); }
.reflection-mark { border-color: rgba(214, 160, 90, .38); color: #d0a05e; }
.corner-label { background: #9b682d; color: #fff7e9; }
.site-footer {
  border-top: 1px solid rgba(214, 160, 90, .2);
}
.footer-logo-link { display: inline-block; }
.footer-logo { height: auto; object-fit: contain; }
.footer-grid p { color: #b8aa95; }
.footer-links a { color: #d9c7aa; }
.footer-links a:hover { color: #dca85e; }
.footer-bottom { color: #948875; border-top-color: rgba(214, 160, 90, .16); }

@media (max-width: 760px) {
  .site-nav { background: #0c0c0b; border-color: rgba(214, 160, 90, .3); }
  .brand-logo { width: 150px; height: 46px; }
}
@media (max-width: 520px) {
  .nav-wrap { min-height: 72px; }
  .brand-image-link { min-width: 145px; }
}
.brand-hero {
  background: #080706;
  border-bottom: 1px solid rgba(214, 160, 90, .24);
}
.storefront-banner {
  position: relative;
  overflow: hidden;
  background: #080706;
  border-bottom: 1px solid rgba(214, 160, 90, .22);
}
.storefront-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -42px 60px rgba(0,0,0,.32);
}
.storefront-banner img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-intro {
  position: relative;
  color: var(--white);
}
.hero-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image: radial-gradient(rgba(214,160,90,.45) .7px, transparent .7px);
  background-size: 19px 19px;
}
.branded-grid { position: relative; z-index: 1; align-items: center; }
.brand-hero .eyebrow { color: #d7a35b; }
.brand-hero h1 { color: #fff6e7; }
.brand-hero .hero-text { color: #d4c7b4; }
.brand-hero .quiet-note { color: #aa9c88; }
.brand-hero .button-primary {
  background: linear-gradient(180deg, #d2a05b, #9b672a);
  color: #100d08;
  box-shadow: 0 12px 30px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.28);
}
.brand-hero .button-secondary {
  color: #f0dfc1;
  background: rgba(255,255,255,.025);
  border-color: rgba(214,160,90,.42);
}

.reading-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.listing-art {
  width: calc(100% + 60px);
  max-width: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: -30px -30px 26px;
  border-bottom: 1px solid rgba(139,92,37,.26);
}
.reading-card .text-link { margin-top: auto; padding-top: 12px; }
.reading-emblem { display: none; }
.membership-art {
  width: calc(100% + 52px);
  max-width: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: 0 -26px 24px;
  border-bottom: 1px solid rgba(139,92,37,.24);
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(8px);
}
.lightbox-stage {
  max-width: min(1180px, 94vw);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid rgba(214,160,90,.48);
  background: #0b0907;
  box-shadow: 0 28px 90px rgba(0,0,0,.60);
}
.lightbox-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  display: block;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(214,160,90,.46);
  border-radius: 50%;
  background: rgba(15,12,9,.92);
  color: #f4dfbf;
  cursor: pointer;
  font: 300 1.8rem/1 Georgia, serif;
}

@media (max-width: 980px) {
  .branded-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .storefront-banner img { min-height: 230px; object-fit: cover; }
  .hero-intro { padding: 58px 0 66px; }
  .listing-art { width: calc(100% + 48px); margin: -24px -24px 22px; }
  .membership-art { width: calc(100% + 48px); margin: 0 -24px 22px; }
  .lightbox { padding: 58px 12px 20px; }
}

@media (max-width: 520px) {
  .storefront-banner img { min-height: 195px; }
}
html {
  background: #090704;
}
body {
  position: relative;
  isolation: isolate;
  background: transparent;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(9, 6, 4, .30), rgba(9, 6, 4, .36)),
    url("assets/storefront/template-background.webp") center / cover no-repeat;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 35%, rgba(178, 115, 43, .05), rgba(0,0,0,.14) 70%);
}

.site-header {
  border-bottom-color: rgba(214, 160, 90, .22);
}
.site-nav a { color: #d8cdbd; }
.site-nav a:hover { color: #efc98f; }
.menu-button { color: #eadbc5; border-color: rgba(214,160,90,.30); }

.hero-intro {
  background:
    radial-gradient(circle at 78% 22%, rgba(176,123,54,.12), transparent 27rem),
    linear-gradient(140deg, rgba(8,7,6,.86), rgba(21,17,12,.79) 60%, rgba(8,7,6,.84));
  backdrop-filter: blur(1px);
}
.hero-service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214,160,90,.40);
  backdrop-filter: blur(5px);
}
.hero-service-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  pointer-events: none;
  border: 1px solid rgba(214,160,90,.14);
}
.hero-service-card .mini-label {
  position: relative;
  margin: 0 0 10px;
  color: #d5a25b;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.service-point {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  align-items: start;
  border-top: 1px solid rgba(214,160,90,.16);
}
.service-point:first-of-type { border-top: 0; }
.service-symbol {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(214,160,90,.42);
  border-radius: 50%;
  color: #d9a65f;
  background: rgba(214,160,90,.05);
  font-size: .96rem;
}
.service-point strong {
  display: block;
  color: #fff1dc;
  font-size: 1.02rem;
  line-height: 1.35;
}
.service-point small {
  display: block;
  margin-top: 4px;
  color: #bcae9b;
  font: 500 .80rem/1.55 ui-sans-serif, system-ui, sans-serif;
}
.section-dark {
  backdrop-filter: blur(2px);
}
.final-cta {
  background-image: none;
  background: rgba(247, 240, 229, .86);
  backdrop-filter: blur(2px);
}
.site-footer {
  background: rgba(7, 6, 5, .93);
  backdrop-filter: blur(2px);
}

@media (max-width: 980px) {
  .hero-service-card { width: min(760px, 100%); margin: 8px auto 0; }
}

@media (max-width: 760px) {
  body::before {
    background-position: center top;
  }
  .hero-service-card { padding: 24px 22px 20px; }
  .service-point { grid-template-columns: 36px 1fr; gap: 13px; }
  .service-symbol { width: 34px; height: 34px; }
}
.question-teaser-section { overflow: hidden; }
.question-teaser {
  display: grid;
  align-items: center;
}
.question-teaser-copy { max-width: 520px; }

.blind-feature {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
}
.blind-art-wrap {
  border: 1px solid rgba(105,72,90,.18);
  background: rgba(255,255,255,.28);
}
.blind-art { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.blind-copy { max-width: 570px; }
.blind-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 28px;
}
.blind-prices span {
  padding: 12px 13px;
  border: 1px solid rgba(105,72,90,.16);
  font: 700 .9rem/1.35 ui-sans-serif, system-ui, sans-serif;
}
.blind-prices strong { display: block; color: var(--accent-deep); }
.blind-prices small { display: block; margin-top: 2px; color: var(--muted); font-size: .74rem; font-weight: 600; }

.questions-page main { min-height: 70vh; }
.question-page-hero {
  position: relative;
  color: #f7ead8;
  background: rgba(8,6,4,.72);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(214,160,90,.18);
}
.question-page-hero-inner {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 64px;
  align-items: center;
}
.question-page-title h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(3.1rem, 6.8vw, 6rem);
}
.question-page-title > p:not(.eyebrow) { max-width: 690px; color: #d3c4af; font-size: 1.12rem; }
.light-link { color: #e2b875; }
.light-link:hover { color: #f1cf9c; }
.parchment-panel {
  position: relative;
  padding: 42px 38px;
  color: #3b2317;
  border: 1px solid rgba(202,146,72,.62);
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
}
.parchment-panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(95,50,21,.22);
}
.parchment-panel .mini-label { color: #71411e; }
.pricing-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1fr 1fr;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid rgba(95,50,21,.18);
  font: 650 .86rem/1.35 ui-sans-serif, system-ui, sans-serif;
}
.pricing-row:first-of-type { border-top: 0; }
.pricing-row strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; }
.pricing-note { position: relative; z-index: 1; margin: 18px 0 0; color: #63442c; font: 600 .78rem/1.55 ui-sans-serif, system-ui, sans-serif; }
.catalogue-heading { max-width: 760px; margin-bottom: 34px; }
.question-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.question-art-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  min-height: 300px;
  border: 1px solid rgba(113,74,54,.18);
  box-shadow: var(--shadow-soft);
}
.question-art-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.question-card-copy { align-self: center; }
.question-card-copy h3 { font-size: 1.46rem; }
.question-card-copy p { color: var(--ink-soft); font-size: .95rem; }
.question-card-copy .text-link { font-size: .82rem; }
.catalogue-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(151,100,55,.34), transparent);
}
.guidance-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.guidance-grid .question-art-card { grid-template-columns: 1fr; }
.guidance-grid .question-art-card img { aspect-ratio: 3 / 2; height: auto; min-height: 0; }

.question-help-section { color: #f4eadc; }
.question-help-panel {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
}
.question-help-panel > div:first-child { max-width: 720px; }
.question-help-panel h2 { color: #fff5e7; }
.question-help-panel p:not(.eyebrow) { color: #cfbfaa; }
.question-help-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.question-help-section .button-secondary { color: #f5e5cf; border-color: rgba(214,160,90,.34); background: rgba(214,160,90,.07); }

@media (max-width: 1060px) {
  .question-card-grid { grid-template-columns: 1fr; }
  .guidance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .question-teaser,
.blind-feature,
.question-page-hero-inner { grid-template-columns: 1fr; }
  .blind-art-wrap { max-width: 720px; }
  .question-page-hero { padding: 70px 0; }
  .question-pricing { max-width: 650px; }
  .question-help-panel { align-items: flex-start; flex-direction: column; }
  .question-help-actions { justify-content: flex-start; }
}
@media (max-width: 680px) {
  .blind-prices { grid-template-columns: 1fr; }
  .parchment-panel { padding: 34px 24px; }
  .pricing-row { grid-template-columns: .8fr 1fr 1fr; font-size: .75rem; }
  .guidance-grid { grid-template-columns: 1fr; }
  .question-art-card { grid-template-columns: 1fr; }
  .question-art-card img { height: auto; min-height: 0; aspect-ratio: 3 / 2; }
}
#readings {
  padding-top: clamp(72px, 8vw, 118px);
}

.question-teaser {
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 6vw, 76px);
}

.question-preview-panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(430px, 46vw, 540px);
  padding: clamp(40px, 5vw, 58px);
  border: 1px solid rgba(117,72,31,.24);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(255,249,237,.42), rgba(255,249,237,.58)),
    url("assets/questions/parchment-v3.webp") center top / cover no-repeat;
  box-shadow: 0 24px 52px rgba(46,24,15,.12);
}

.question-preview-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(117,72,31,.12);
  border-radius: 22px;
  pointer-events: none;
}

.question-preview-panel::after {
  content: "✦";
  position: absolute;
  right: 28px;
  top: 22px;
  color: rgba(147,91,36,.18);
  font-size: 1.25rem;
}

.question-preview-panel .mini-label {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: rgba(116,66,27,.86);
}


@media (max-width: 760px) {
  .question-preview-panel {
    min-height: 400px;
    padding: 34px 22px;
  }

  .question-preview-panel::before {
    inset: 12px;
  }

  
}

html { scroll-padding-top: 96px; }
body { overflow-x: hidden; }
main section[id] { scroll-margin-top: 96px; }
p { text-wrap: pretty; }
h1::first-line { color: inherit; }

:where(a, button, summary):focus-visible {
  outline: 2px solid #e0ad66;
  outline-offset: 4px;
}
.nav-wrap { min-height: 88px; }
.brand-image-link { min-width: 205px; }
.brand-logo {
  width: 198px;
  height: 58px;
}
.site-nav { font-size: .86rem; }
.site-nav a[aria-current="page"]::after {
  left: 0 !important;
  right: 0 !important;
  background: #c99047 !important;
}
.section { padding: clamp(78px, 7vw, 104px) 0; }
.section-heading { margin-bottom: clamp(38px, 4vw, 52px); }
.section-heading p:last-child { line-height: 1.72; }
.ornate-heading::after { margin-top: 22px; opacity: .75; }

main > .section:not(.section-dark):not(.final-cta) {
  backdrop-filter: blur(2px);
}
#blind { background: rgba(244, 236, 226, .83) !important; }
.question-catalogue-section { background: rgba(249, 245, 238, .86) !important; }
.storefront-banner img { max-height: 490px; }
.hero-intro { padding: clamp(68px, 7vw, 92px) 0; }
.hero-grid { gap: clamp(44px, 6vw, 78px); }
.brand-hero h1 { max-width: 720px; }
.hero-text { line-height: 1.72; }
.hero-service-card {
  padding: 32px 32px 28px;
  border-radius: 16px;
  background: rgba(16, 12, 8, .68);
  box-shadow: 0 28px 72px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,235,200,.025);
}
.hero-service-card::before { border-radius: 10px; }
.service-point { padding: 18px 0; }
.service-point small { max-width: 390px; }
.card-grid.three { gap: 24px; }
.reading-card {
  border-radius: 20px;
  background: rgba(255, 252, 246, .92);
  box-shadow: 0 14px 34px rgba(55,38,24,.07);
}
.reading-card.featured { transform: translateY(-8px); }
.reading-card.featured:hover { transform: translateY(-11px); }
.listing-art { margin-bottom: 24px; }
.card-topline { margin-bottom: 20px; }
.reading-card h3 { margin-bottom: 10px; }
.reading-card > p { line-height: 1.66; }
.clean-list { line-height: 1.55; }
.format-note {
  margin-top: 40px;
  padding: 31px 34px;
  border-radius: 18px;
  align-items: center;
}
.home-page .question-teaser-copy { max-width: 480px; }
.home-page .question-preview-panel {
  border-radius: 18px;
  background:
    linear-gradient(rgba(255,249,237,.24), rgba(255,249,237,.37)),
    url("assets/questions/parchment-v3.webp") center top / cover no-repeat;
  box-shadow: 0 28px 62px rgba(46,24,15,.16);
}
.home-page .question-preview-panel::before {
  inset: 14px;
  border-radius: 12px;
  border-color: rgba(117,72,31,.14);
}

.blind-feature { gap: clamp(40px, 5vw, 64px); }
.blind-art-wrap {
  overflow: hidden;
  border-radius: 18px;
  border-color: rgba(139,92,37,.22);
  box-shadow: 0 20px 48px rgba(56,35,20,.10);
}
.blind-prices span {
  border-radius: 12px;
  background: rgba(255,252,246,.66);
}
.section-dark { background: rgba(8,7,5,.88); }
.reflection-grid article {
  border-radius: 16px;
  background: rgba(20,17,12,.88);
}
.reflection-grid article p { line-height: 1.66; }
.membership-art { border-bottom-color: rgba(139,92,37,.24); }
.faq-layout { gap: clamp(48px, 8vw, 108px); }
.faq-list details { border-color: rgba(117,84,55,.20); }
.faq-list summary { padding-top: 18px; padding-bottom: 18px; }
.faq-list details p { line-height: 1.68; }
.final-cta { padding: clamp(64px, 6vw, 84px) 0; }
.final-cta-inner {
  border-radius: 20px;
}
.footer-logo { width: 236px; }
.footer-links { row-gap: 11px; }
.question-page-hero { padding: clamp(72px, 7vw, 98px) 0; }
.question-page-title h1 { color: #fff4e3; }
.parchment-panel {
  border-radius: 14px;
  background:
    linear-gradient(rgba(247,224,188,.74), rgba(239,209,166,.78)),
    url("assets/questions/parchment-v3.webp") center / cover;
}
.parchment-panel::after { border-radius: 8px; }
.question-art-card {
  border-radius: 16px;
  background: rgba(255,252,246,.92);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.question-art-card:hover {
  transform: translateY(-3px);
  border-color: rgba(165,107,49,.34);
  box-shadow: 0 18px 42px rgba(62,39,24,.11);
}
.question-card-copy { padding: 30px 28px; }
.catalogue-divider { margin: clamp(58px, 6vw, 76px) 0; }
.question-help-section { background: rgba(7,6,5,.91) !important; }
@media (max-width: 1100px) {
  .site-nav { gap: 15px; font-size: .82rem; }
  .brand-image-link { min-width: 180px; }
  .brand-logo { width: 174px; height: 52px; }
  .home-page .question-teaser { grid-template-columns: .82fr 1.18fr; }
}

@media (max-width: 980px) {
  .home-page .question-teaser { grid-template-columns: 1fr; }
  .home-page .question-teaser-copy { max-width: 650px; }
  .home-page .question-preview-panel { width: min(760px, 100%); min-height: 540px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 16px; }
  .site-header { position: relative; }
  .nav-wrap { min-height: 76px; }
  .brand-image-link { min-width: 160px; }
  .brand-logo { width: 158px; height: 48px; }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(3rem, 14vw, 4.8rem); line-height: .95; }
  h2 { font-size: clamp(2.2rem, 10vw, 3.35rem); }
  .storefront-banner img { min-height: 210px; }
  .hero-intro { padding: 58px 0 66px; }
  .hero-service-card { border-radius: 14px; }
  .reading-card.featured { transform: none; }
  .format-note { grid-template-columns: 1fr; gap: 18px; padding: 27px 24px; }
  .home-page .question-preview-panel {
    min-height: 500px;
    padding: 52px 24px 34px;
    background-position: center top;
  }
  
  .final-cta-inner { align-items: stretch; }
}

@media (max-width: 520px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 62px 0; }
  .storefront-banner img { min-height: 175px; }
  .hero-actions { margin-top: 28px; }
  .home-page .question-preview-panel {
    min-height: 475px;
    padding: 48px 18px 28px;
  }
  .home-page .question-preview-panel::before { inset: 9px; }
  
  .question-card-copy { padding: 24px 22px; }
  .site-footer { padding-top: 50px; }
}
.home-page .question-preview-panel {
  justify-content: flex-start;
}
.home-page .question-preview-panel::after { display: none; }

@media (max-width: 760px) {
  .home-page .question-preview-panel { padding-top: 158px; }
}
@media (max-width: 520px) {
  .home-page .question-preview-panel { padding-top: 146px; }
}
.question-page-hero .question-pricing.parchment-panel {
  border: 1px solid rgba(117,72,31,.24);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255,249,237,.24), rgba(255,249,237,.37)),
    url("assets/questions/parchment-v3.webp") center top / cover no-repeat;
  box-shadow: 0 28px 62px rgba(46,24,15,.16);
}

.question-page-hero .question-pricing.parchment-panel::after {
  inset: 14px;
  border-radius: 12px;
  border-color: rgba(117,72,31,.14);
}

.question-page-hero .question-pricing .pricing-row {
  border-color: rgba(117,72,31,.16);
}

.question-page-hero .question-pricing .pricing-note {
  color: rgba(85,52,28,.82);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .question-page-hero .question-pricing.parchment-panel {
    min-height: 370px;
    padding: 48px 28px 34px;
  }
}
.home-more-section {
  background: rgba(244,237,225,.87) !important;
}

.home-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.home-more-card {
  overflow: hidden;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
  border: 1px solid rgba(111,72,45,.16);
  box-shadow: 0 20px 48px rgba(55,34,21,.09);
}

.home-more-card > div:last-child {
  align-self: center;
  padding: 34px 32px;
}

.home-more-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
}

.home-more-card p:not(.mini-label) {
  color: var(--ink-soft);
  line-height: 1.62;
}

.home-more-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.faq-teaser-card {
  grid-template-columns: 160px 1fr;
}
.membership-page-hero,
.faq-page-hero {
  position: relative;
  padding: clamp(78px, 8vw, 118px) 0;
  color: #f8ead7;
  background: rgba(8,6,4,.82);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(214,160,90,.18);
}

.membership-page-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(50px, 7vw, 88px);
  align-items: center;
}

.membership-page-hero-copy h1,
.faq-page-hero h1 {
  color: #fff4e3;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: .93;
  max-width: 780px;
}

.membership-page-hero-copy > p:not(.eyebrow):not(.quiet-note),
.faq-page-hero-inner > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255,244,227,.82);
  font-size: 1.08rem;
  line-height: 1.72;
}

.membership-page-hero-copy .quiet-note {
  color: rgba(255,236,207,.70);
}

.membership-page-hero-art {
  overflow: hidden;
  border: 1px solid rgba(212,159,85,.24);
  border-radius: 20px;
  box-shadow: 0 28px 72px rgba(0,0,0,.34);
}

.membership-page-hero-art img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.membership-tier-section {
  background: rgba(247,241,231,.88) !important;
}

.membership-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
}

.membership-detail-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(220px, .82fr) minmax(0, 1.18fr);
  border: 1px solid rgba(110,72,44,.16);
  background: rgba(255,250,241,.94);
  box-shadow: 0 22px 52px rgba(55,34,21,.10);
}

.membership-detail-copy {
  position: relative;
}

.membership-detail-copy h3 {
  margin-bottom: 4px;
}

.membership-detail-copy h3 small {
  font-size: .42em;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  color: var(--muted);
}

.membership-balance {
  margin-bottom: 16px;
  color: var(--accent-deep);
  font: 800 .92rem/1.3 ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.membership-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(110,72,44,.13);
}

.membership-facts dt,
.membership-facts dd {
  margin: 0;
  font-size: .88rem;
}

.membership-facts dt { color: var(--muted); }
.membership-facts dd { text-align: right; font-weight: 750; color: var(--ink); }
.membership-example { color: var(--ink-soft); font-size: .9rem; }
.membership-detail-popular { border-color: rgba(173,111,42,.42); }

.membership-credit-explainer {
  background: rgba(16,11,8,.93) !important;
  color: #f7ead8;
}

.membership-credit-explainer-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}

.membership-credit-explainer h2,
.golden-reading-section h2 { color: inherit; }

.membership-credit-explainer p:not(.eyebrow) { color: rgba(247,234,216,.72); }

.membership-credit-cards,
.golden-odds-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.membership-credit-cards > div,
.golden-odds-grid > div {
  padding: 22px 24px;
  border: 1px solid rgba(212,159,85,.24);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.membership-credit-cards strong,
.golden-odds-grid strong,
.golden-odds-grid span,
.golden-odds-grid small {
  display: block;
}

.membership-credit-cards strong,
.golden-odds-grid strong { color: #e1ad61; font-family: var(--display); font-size: 1.28rem; }
.membership-credit-cards span,
.golden-odds-grid span { margin-top: 5px; color: #f6e7d1; font-weight: 750; }
.golden-odds-grid small { margin-top: 3px; }

.golden-reading-section {
  background: rgba(247,240,229,.88) !important;
}

.golden-reading-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 7vw, 90px);
  align-items: center;
}

.golden-odds-grid > div {
  border-color: rgba(116,75,42,.16);
  background: rgba(255,250,240,.88);
}

.golden-odds-grid strong { color: var(--accent-deep); }
.golden-odds-grid span { color: var(--ink); }
.golden-odds-grid small { color: var(--muted); }

.membership-rules-section {
  background: rgba(241,234,222,.90) !important;
}
.faq-page-hero-inner {
  max-width: 900px;
}

.faq-page-section {
  background: rgba(247,241,231,.89) !important;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
}

.faq-page-index {
  position: sticky;
  top: 110px;
  padding: 24px;
  border: 1px solid rgba(113,74,54,.16);
  border-radius: 16px;
  background: rgba(255,250,241,.88);
  box-shadow: 0 14px 34px rgba(55,34,21,.06);
}

.faq-page-index a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid rgba(113,74,54,.12);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

.faq-page-index a:hover { color: var(--accent-deep); }

.faq-page-content {
  min-width: 0;
}

.faq-group {
  padding: 0 0 clamp(58px, 7vw, 86px);
  border-bottom: 1px solid rgba(113,74,54,.14);
  scroll-margin-top: 110px;
}

.faq-group:last-child { margin-bottom: 0; }
.faq-group h2 { max-width: 680px; }
.faq-group .faq-list { width: 100%; }

@media (max-width: 980px) {
  .home-more-grid,
.membership-page-grid { grid-template-columns: 1fr; }
  .membership-page-hero-grid,
.membership-credit-explainer-grid,
.golden-reading-grid { grid-template-columns: 1fr; }
  .membership-page-hero-art { max-width: 760px; }
  .faq-page-grid { grid-template-columns: 1fr; }
  .faq-page-index { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
}

@media (max-width: 760px) {
  .home-more-card,
.membership-detail-card { grid-template-columns: 1fr; }
  .home-more-card img,
.membership-detail-card .membership-art { min-height: 250px; max-height: 340px; }
  .faq-teaser-card { grid-template-columns: 110px 1fr; }
  .membership-page-hero-copy h1,
.faq-page-hero h1 { font-size: clamp(2.9rem, 13vw, 4.5rem); }
  .membership-credit-cards,
.golden-odds-grid { grid-template-columns: 1fr; }
  .membership-facts div { display: grid; grid-template-columns: 1fr; gap: 3px; }
  .membership-facts dd { text-align: left; }
  .faq-page-index { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .home-more-card { display: block; }
  .faq-teaser-card { display: grid; grid-template-columns: 88px 1fr; }
  .home-more-card > div:last-child { padding: 26px 22px; }
  .membership-detail-copy { padding: 28px 24px; }
}
.home-page .question-preview-panel,
.question-page-hero .question-pricing.parchment-panel {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.home-page .question-preview-panel::before,
.question-page-hero .question-pricing.parchment-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border: 0;
  border-radius: 0;
  background: url("assets/questions/parchment-v3.webp") center / 100% 100% no-repeat;
  filter: drop-shadow(0 22px 26px rgba(45, 25, 12, .20));
}

.home-page .question-preview-panel::after,
.question-page-hero .question-pricing.parchment-panel::after {
  display: none;
}

.home-page .question-preview-panel > *,
.question-page-hero .question-pricing.parchment-panel > * {
  position: relative;
  z-index: 1;
}

.home-page .question-preview-panel {
  min-height: 585px;
  padding: 188px 70px 92px;
}

.home-page .question-preview-panel .mini-label {
  margin-bottom: 10px;
}


.question-page-hero .question-pricing.parchment-panel {
  min-height: 465px;
  padding: 156px 58px 68px;
}

.question-page-hero .question-pricing .mini-label {
  margin-bottom: 13px;
  color: #72451f;
}

.question-page-hero .question-pricing .pricing-row {
  padding: 15px 0;
}

.question-page-hero .question-pricing .pricing-note {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .home-page .question-preview-panel {
    width: min(680px, 100%);
    min-height: 570px;
    padding: 180px 58px 86px;
  }

  .question-page-hero .question-pricing.parchment-panel {
    width: min(620px, 100%);
    min-height: 455px;
    padding: 150px 52px 64px;
  }
}

@media (max-width: 760px) {
  .home-page .question-preview-panel {
    min-height: 560px;
    padding: 168px 48px 82px;
  }

  .question-page-hero .question-pricing.parchment-panel {
    min-height: 445px;
    padding: 144px 46px 60px;
  }
}

@media (max-width: 520px) {
  .home-page .question-preview-panel {
    min-height: 540px;
    padding: 154px 36px 76px;
  }

  

  

  .question-page-hero .question-pricing.parchment-panel {
    min-height: 430px;
    padding: 136px 36px 58px;
  }
}

.site-header .site-nav {
  white-space: nowrap;
}

.site-header .site-nav a {
  line-height: 1;
}

.site-header .site-nav a[aria-current="page"] {
  color: #efc98f;
}

.site-header .site-nav a[aria-current="page"]::after {
  left: 0;
  right: 0;
}
.home-more-grid {
  gap: 24px;
  align-items: stretch;
}

.home-more-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: rgba(255,250,240,.94);
}

.home-more-media {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  height: 190px;
  border-bottom: 1px solid rgba(111,72,45,.14);
  background: #120c08;
}

.home-more-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.home-more-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 30px;
}

.home-more-copy h3 {
  max-width: 16ch;
  margin-bottom: 10px;
}

.home-more-copy p:not(.mini-label) {
  margin-bottom: 22px;
}

.home-more-copy .button {
  margin-top: auto;
}

.faq-teaser-card {
  display: flex;
  flex-direction: column;
}

.faq-teaser-visual {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  color: #f2d59a;
  background:
    radial-gradient(circle at 50% 38%, rgba(210,151,66,.24), transparent 31%),
    linear-gradient(135deg, rgba(44,29,18,.72), rgba(9,7,5,.98));
}

.faq-teaser-visual::before,
.faq-teaser-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(210,151,66,.16);
  pointer-events: none;
}

.faq-teaser-visual::after {
  inset: 24px;
  border-color: rgba(210,151,66,.07);
}

.faq-teaser-visual span {
  font-family: var(--display);
  font-size: 5.2rem;
  line-height: .82;
}

.faq-teaser-visual small {
  color: rgba(246,225,188,.7);
  font: 750 .66rem/1.2 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.membership-page-grid {
  gap: 30px;
}

.membership-detail-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 18px;
}

.membership-detail-card .membership-art {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 900 / 601;
  object-fit: contain;
  object-position: center;
  background: #160b07;
  border-bottom: 1px solid rgba(110,72,44,.15);
}

.membership-detail-copy {
  flex: 1;
  padding: 30px 30px 32px;
}

.membership-detail-copy h3 {
  font-size: clamp(2rem, 2.6vw, 2.55rem);
}

.membership-facts {
  margin: 20px 0 16px;
}

.membership-facts div {
  padding: 9px 0;
}

.membership-example {
  margin-bottom: 0;
  line-height: 1.55;
}

.membership-detail-popular {
  box-shadow: 0 22px 56px rgba(81,47,20,.13);
}
.faq-page-grid {
  gap: clamp(42px, 6vw, 72px);
}

.faq-group {
  padding-bottom: clamp(42px, 5vw, 60px);
  margin-bottom: clamp(42px, 5vw, 60px);
}

.faq-group h2 {
  margin-bottom: 22px;
}

.faq-membership-link {
  margin-top: 22px;
}

@media (max-width: 1160px) {
  .site-header .site-nav {
    gap: 14px;
    font-size: .8rem;
  }
}

@media (max-width: 980px) {
  .site-header .nav-wrap {
    min-height: 76px;
  }

  .site-header .site-nav {
    white-space: normal;
  }

  .home-more-media {
    height: 220px;
  }
}

@media (max-width: 760px) {
  .home-more-card,
.faq-teaser-card {
    display: flex;
    flex-direction: column;
  }

  .home-more-media {
    height: 200px;
    min-height: 200px;
  }

  .membership-detail-copy {
    padding: 28px 24px 30px;
  }

  .faq-group {
    padding-bottom: 38px;
    margin-bottom: 38px;
  }
}
.home-page .question-preview-panel {
  padding-top: 111px;
}

@media (max-width: 760px) {
  .home-page .question-preview-panel {
    padding-top: 104px;
  }
}

@media (max-width: 520px) {
  .home-page .question-preview-panel {
    padding-top: 96px;
  }
}
.question-page-hero .question-pricing.parchment-panel {
  padding-top: 88px;
  padding-right: 60px;
  padding-bottom: 55px;
  padding-left: 70px;
}

@media (max-width: 900px) {
  .question-page-hero .question-pricing.parchment-panel {
    padding: 84px 52px 52px 60px;
  }
}

@media (max-width: 760px) {
  .question-page-hero .question-pricing.parchment-panel {
    padding: 80px 42px 48px 48px;
  }
}

@media (max-width: 520px) {
  .question-page-hero .question-pricing.parchment-panel {
    padding: 76px 32px 44px 36px;
  }
}

.site-header .nav-wrap {
  min-height: 82px;
}

.site-header .brand-image-link {
  min-width: 190px;
}

.site-header .brand-logo {
  width: 184px;
  height: 54px;
}

.site-header .site-nav {
  gap: 17px;
  font-size: .845rem;
}
main > .section:not(.section-dark):not(.final-cta) {
  background: rgba(248, 243, 235, .88);
}


.section-heading {
  max-width: 800px;
}
.section-heading p:last-child {
  max-width: 760px;
  color: #6c5e52;
}
.home-page #readings {
  padding-top: clamp(82px, 6.5vw, 98px);
  padding-bottom: clamp(84px, 6.5vw, 102px);
}

.home-page .card-grid.three {
  gap: 26px;
}

.home-page .reading-card {
  padding-bottom: 32px;
}

.home-page .reading-card h3 {
  font-size: clamp(1.72rem, 2.1vw, 2.05rem);
}

.home-page .reading-card > p,
.home-page .clean-list {
  font-size: .94rem;
}

.home-page .format-note {
  margin-top: 34px;
  padding: 27px 32px;
}

.home-page .question-teaser-section {
  padding-top: clamp(76px, 6vw, 92px);
  padding-bottom: clamp(76px, 6vw, 92px);
}

.home-page .question-teaser {
  grid-template-columns: minmax(320px, .78fr) minmax(570px, 1.22fr);
  gap: clamp(46px, 5vw, 72px);
}

.home-page .question-preview-panel {
  width: min(100%, 650px);
  justify-self: end;
}

.home-page #blind {
  padding-top: clamp(78px, 6vw, 94px);
  padding-bottom: clamp(78px, 6vw, 94px);
}

.home-page .blind-feature {
  grid-template-columns: minmax(420px, .96fr) minmax(430px, 1.04fr);
  gap: clamp(44px, 5vw, 68px);
}

.home-page .blind-copy h2 {
  max-width: 14ch;
}

.home-page .blind-copy > p {
  font-size: 1rem;
  line-height: 1.7;
}

.home-page .blind-prices {
  margin-top: 26px;
}

.home-page .blind-prices span {
  background: rgba(255,252,246,.82);
}

.home-page #reflection {
  padding-top: clamp(76px, 6vw, 92px);
  padding-bottom: clamp(76px, 6vw, 92px);
}

.home-page .reflection-grid article p {
  font-size: .94rem;
}

.home-page .home-more-section {
  padding-top: clamp(74px, 6vw, 90px);
  padding-bottom: clamp(74px, 6vw, 90px);
}

.home-page .home-more-grid {
  max-width: 980px;
  margin: 34px auto 0;
  gap: 26px;
}

.home-page .home-more-card {
  border-radius: 18px;
}

.home-page .home-more-copy h3 {
  max-width: 18ch;
  font-size: clamp(1.55rem, 1.8vw, 1.92rem);
}
.questions-page .question-page-hero {
  padding-top: clamp(74px, 6.5vw, 94px);
  padding-bottom: clamp(74px, 6.5vw, 94px);
}

.questions-page .question-page-hero-inner {
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  gap: clamp(54px, 6vw, 84px);
}

.questions-page .question-pricing.parchment-panel {
  width: min(100%, 520px);
  justify-self: end;
  filter: drop-shadow(0 19px 26px rgba(49,29,13,.10));
}

.questions-page .question-catalogue-section {
  padding-top: clamp(82px, 6vw, 96px);
  padding-bottom: clamp(82px, 6vw, 96px);
}

.questions-page .question-card-grid {
  gap: 24px;
}

.questions-page .question-art-card {
  border-radius: 17px;
  box-shadow: 0 14px 32px rgba(55,34,21,.075);
}

.questions-page .question-card-copy {
  padding: 28px 27px;
}

.questions-page .question-card-copy h3 {
  font-size: clamp(1.42rem, 1.8vw, 1.65rem);
}

.questions-page .question-card-copy p {
  line-height: 1.65;
}

.questions-page .catalogue-divider {
  margin: clamp(54px, 5vw, 66px) 0;
}

.questions-page .question-help-section {
  padding-top: clamp(68px, 5vw, 82px);
  padding-bottom: clamp(68px, 5vw, 82px);
}
.memberships-page .membership-page-hero {
  padding-top: clamp(74px, 6.5vw, 96px);
  padding-bottom: clamp(74px, 6.5vw, 96px);
}

.memberships-page .membership-page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
  gap: clamp(52px, 6vw, 82px);
}

.memberships-page .membership-page-hero-art {
  max-width: 560px;
  justify-self: end;
  border-radius: 18px;
}

.memberships-page .membership-tier-section {
  padding-top: clamp(80px, 6vw, 96px);
  padding-bottom: clamp(80px, 6vw, 96px);
}

.memberships-page .membership-page-grid {
  max-width: 1120px;
  margin: 38px auto 0;
  gap: 26px;
}

.memberships-page .membership-balance {
  font-size: .88rem;
}

.memberships-page .membership-facts div {
  padding: 8px 0;
}

.memberships-page .membership-facts dt,
.memberships-page .membership-facts dd {
  font-size: .9rem;
}

.memberships-page .membership-example {
  font-size: .9rem;
  line-height: 1.58;
}

.memberships-page .membership-credit-explainer {
  padding-top: clamp(70px, 5.5vw, 86px);
  padding-bottom: clamp(70px, 5.5vw, 86px);
}

.memberships-page .membership-credit-cards > div {
  padding: 20px 22px;
  border-radius: 13px;
}

.memberships-page .golden-reading-section {
  padding-top: clamp(72px, 5.5vw, 88px);
  padding-bottom: clamp(72px, 5.5vw, 88px);
}

.memberships-page .golden-odds-grid {
  gap: 16px;
}

.memberships-page .golden-odds-grid > div {
  min-height: 118px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(55,34,21,.045);
}

.memberships-page .membership-rules-section {
  padding-top: clamp(68px, 5vw, 82px);
  padding-bottom: clamp(68px, 5vw, 82px);
}

.memberships-page .membership-rules-section .faq-list summary {
  padding-top: 16px;
  padding-bottom: 16px;
}
.faq-page .faq-page-hero {
  padding-top: clamp(72px, 6vw, 90px);
  padding-bottom: clamp(72px, 6vw, 90px);
}

.faq-page .faq-page-section {
  padding-top: clamp(70px, 5.5vw, 86px);
  padding-bottom: clamp(66px, 5vw, 82px);
}

.faq-page .faq-page-grid {
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(46px, 5.5vw, 72px);
  max-width: 1080px;
  margin: 0 auto;
}

.faq-page .faq-page-index {
  top: 102px;
  padding: 22px 23px;
  border-radius: 15px;
  background: rgba(255,250,241,.94);
}

.faq-page .faq-page-index a {
  padding: 10px 0;
  font-size: .89rem;
}

.faq-page .faq-group h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4vw, 3.45rem);
}

.faq-page .faq-list summary {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: .96rem;
}

.faq-page .faq-list details p {
  padding-bottom: 17px;
  font-size: .94rem;
}

.faq-page .faq-membership-link {
  margin-top: 18px;
}
.final-cta {
  padding-top: clamp(58px, 4.8vw, 72px);
  padding-bottom: clamp(58px, 4.8vw, 72px);
}

.final-cta-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(29px, 3vw, 38px) clamp(30px, 3.5vw, 44px);
}

.site-footer {
  padding-top: 54px;
}

.footer-grid {
  padding-bottom: 34px;
}

.footer-bottom {
  padding-top: 19px;
  padding-bottom: 22px;
}
@media (max-width: 980px) {
  .site-header .nav-wrap { min-height: 76px; }
  .site-header .brand-logo { width: 168px; height: 50px; }

  .home-page .question-teaser,
.home-page .blind-feature,
.questions-page .question-page-hero-inner,
.memberships-page .membership-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-page .question-preview-panel,
.questions-page .question-pricing.parchment-panel,
.memberships-page .membership-page-hero-art {
    justify-self: start;
  }

  .faq-page .faq-page-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
  }
}

@media (max-width: 760px) {
  .site-header .nav-wrap { min-height: 70px; }
  .site-header .brand-image-link { min-width: 0; }
  .site-header .brand-logo { width: 148px; height: 44px; }

  .site-header .site-nav {
    top: 64px;
    left: 14px;
    right: 14px;
    padding: 13px;
    border-color: rgba(214,160,90,.30);
    border-radius: 14px;
    background: rgba(10,8,6,.985);
    box-shadow: 0 22px 54px rgba(0,0,0,.36);
  }

  .site-header .site-nav a {
    padding: 11px 12px;
    color: #e6dac7;
    border-radius: 9px;
  }

  .site-header .site-nav a:hover,
.site-header .site-nav a[aria-current="page"] {
    color: #f2cd91;
    background: rgba(214,160,90,.08);
  }

  .home-page .question-teaser,
.home-page .blind-feature {
    gap: 34px;
  }

  .home-page .question-preview-panel {
    width: 100%;
  }

  .home-page .home-more-grid {
    grid-template-columns: 1fr;
  }

  .questions-page .question-pricing.parchment-panel {
    width: min(100%, 520px);
  }

  .memberships-page .membership-page-grid {
    grid-template-columns: 1fr;
  }

  .faq-page .faq-page-index {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }
}

@media (max-width: 520px) {
  .faq-page .faq-page-index {
    grid-template-columns: 1fr;
  }

  .home-page .reflection-grid article {
    min-height: 0;
  }
}

@media (min-width: 1200px) {
  .memberships-page .membership-tier-section > .shell {
    width: min(1500px, calc(100% - 64px));
    max-width: none;
  }

  .memberships-page .membership-page-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1500px;
    gap: 18px;
  }

  .memberships-page .membership-detail-card {
    min-width: 0;
  }

  .memberships-page .membership-detail-copy {
    padding: 24px 22px 26px;
  }

  .memberships-page .membership-detail-copy h3 {
    font-size: clamp(1.72rem, 1.7vw, 2.08rem);
  }

  .memberships-page .membership-balance {
    font-size: .78rem;
  }

  .memberships-page .membership-detail-copy > p:not(.mini-label):not(.membership-balance):not(.membership-example) {
    font-size: .91rem;
    line-height: 1.55;
  }

  .memberships-page .membership-facts {
    margin: 16px 0 14px;
  }

  .memberships-page .membership-facts div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 10px;
    padding: 7px 0;
  }

  .memberships-page .membership-facts dt,
.memberships-page .membership-facts dd {
    font-size: .78rem;
    line-height: 1.3;
  }

  .memberships-page .membership-facts dd {
    text-align: right;
  }

  .memberships-page .membership-example {
    font-size: .79rem;
    line-height: 1.48;
  }

  .memberships-page .corner-label {
    top: 18px;
    right: 18px;
    font-size: .58rem;
  }
}

@media (min-width: 761px) and (max-width: 1199px) {
  .memberships-page .membership-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .memberships-page .membership-tier-section > .shell {
    width: min(calc(100% - 56px), 1500px);
  }

  .memberships-page .membership-tier-section .section-heading {
    max-width: 760px;
  }

  .memberships-page .membership-page-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
    gap: 18px;
    align-items: stretch;
  }

  .memberships-page .membership-detail-card {
    min-width: 0;
    height: 100%;
  }

  .memberships-page .membership-detail-card .membership-art {
    width: 100%;
    aspect-ratio: 900 / 601;
    object-fit: contain;
    object-position: center;
    background: #160b07;
  }

  .memberships-page .membership-detail-copy {
    display: flex;
    flex-direction: column;
    padding: 22px 22px 24px;
  }

  .memberships-page .membership-detail-copy h3 {
    font-size: clamp(1.72rem, 1.75vw, 2.05rem);
  }

  .memberships-page .membership-balance {
    margin-bottom: 10px;
    font-size: .78rem;
    letter-spacing: .065em;
  }

  .memberships-page .membership-detail-copy > p:not(.mini-label):not(.membership-balance):not(.membership-example) {
    min-height: 4.8em;
    font-size: .9rem;
    line-height: 1.52;
  }

  .memberships-page .membership-facts {
    margin: 15px 0 13px;
  }

  .memberships-page .membership-facts div {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 10px;
    padding: 7px 0;
    align-items: start;
  }

  .memberships-page .membership-facts dt,
.memberships-page .membership-facts dd {
    font-size: .77rem;
    line-height: 1.35;
  }

  .memberships-page .membership-example {
    margin-top: auto;
    font-size: .79rem;
    line-height: 1.45;
  }

  .memberships-page .corner-label {
    top: 18px;
    right: 18px;
    font-size: .58rem;
  }
}

@media (min-width: 761px) and (max-width: 1279px) {
  .memberships-page .membership-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.memberships-page .membership-detail-card .membership-art {
  margin-left: -1px;
  margin-right: -1px;
}
.memberships-page .membership-detail-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,253,249,.94);
  box-shadow: 0 8px 28px rgba(55,38,48,.055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.memberships-page .membership-detail-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(105,72,90,.055);
  border-radius: 15px;
  pointer-events: none;
}

.memberships-page .membership-detail-card:hover {
  transform: translateY(-4px);
  border-color: #bda5b0;
  box-shadow: var(--shadow-soft);
}

.memberships-page .membership-detail-card .membership-art {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  margin: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border-bottom: 1px solid rgba(139,92,37,.26);
}

.memberships-page .membership-detail-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 26px 28px;
  background: rgba(255,253,249,.94);
}

.memberships-page .membership-detail-copy .mini-label {
  margin-bottom: 10px;
}

.memberships-page .membership-detail-copy h3 {
  margin-bottom: 7px;
  font-size: clamp(1.78rem, 2vw, 2.16rem);
}

.memberships-page .membership-detail-copy > p:not(.mini-label):not(.membership-balance):not(.membership-example) {
  line-height: 1.62;
}

.memberships-page .membership-balance {
  margin-bottom: 14px;
}

.memberships-page .membership-facts {
  margin: 20px 0 16px;
}

.memberships-page .membership-example {
  margin-top: auto;
  padding-top: 6px;
}

.memberships-page .membership-detail-popular {
  transform: translateY(-6px);
  border-color: #b99baa;
  background: linear-gradient(180deg, rgba(246,235,240,.92), rgba(255,253,249,.94));
  box-shadow: var(--shadow);
}

.memberships-page .membership-detail-popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  z-index: 4;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.memberships-page .membership-detail-popular:hover {
  transform: translateY(-9px);
}

@media (min-width: 1280px) {
  .memberships-page .membership-detail-copy {
    padding: 22px 20px 24px;
  }

  .memberships-page .membership-detail-copy h3 {
    font-size: clamp(1.62rem, 1.55vw, 1.92rem);
  }

  .memberships-page .membership-detail-copy > p:not(.mini-label):not(.membership-balance):not(.membership-example) {
    min-height: 4.6em;
    font-size: .89rem;
    line-height: 1.5;
  }

  .memberships-page .membership-facts {
    margin: 15px 0 13px;
  }

  .memberships-page .membership-facts div {
    padding: 7px 0;
  }

  .memberships-page .membership-detail-popular {
    transform: translateY(-6px);
  }

  .memberships-page .membership-detail-popular:hover {
    transform: translateY(-9px);
  }
}

@media (max-width: 760px) {
  .memberships-page .membership-detail-copy {
    padding: 24px;
  }

  .memberships-page .membership-detail-popular,
.memberships-page .membership-detail-popular:hover {
    transform: none;
  }
}
.site-nav { gap: 20px; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -6px;
  height: 1px;
  background: #c99047;
  transition: .2s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { left: 0; right: 0; }
.site-nav a[aria-current="page"] { color: #e1b066; }

.product-root { min-height: 64vh; }
.product-loading { padding: 100px 0; }
.product-hero {
  position: relative;
  padding: clamp(64px, 7vw, 104px) 0;
  background: rgba(9,7,5,.88);
  color: #fff4e3;
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(6,4,3,.68), rgba(6,4,3,.78)),
    url("assets/storefront/template-background.webp") center / cover fixed;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px,.82fr) minmax(0,1.18fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}
.product-media-card {
  overflow: hidden;
  border: 1px solid rgba(215,160,88,.25);
  border-radius: 20px;
  background: #120d08;
  box-shadow: 0 28px 70px rgba(0,0,0,.34);
}
.product-media-card img { width: 100%; height: auto; }
.product-summary { max-width: 700px; }
.product-summary .eyebrow { color: #d8a45f; }
.product-summary h1 {
  color: #fff4e3;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .94;
}
.product-tagline {
  margin-bottom: 12px;
  color: #f0cf9e;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
}
.product-description {
  max-width: 650px;
  color: rgba(255,244,227,.82);
  font-size: 1.05rem;
}
.product-back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: #dcb36f;
  text-decoration: none;
  font-family: ui-sans-serif,system-ui,sans-serif;
  font-size: .86rem;
  font-weight: 700;
}
.product-back-link:hover { color: #f1cf9c; }
.product-price-card {
  margin-top: 30px;
  padding: 24px 26px;
  border: 1px solid rgba(214,160,90,.24);
  border-radius: 16px;
  background: rgba(20,15,10,.72);
}
.product-price-card .mini-label { color: #d8a45f; }

.product-membership-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(214,160,90,.15);
  border-radius: 10px;
  background: rgba(255,244,227,.035);
}
.product-membership-price span { color: #cfc0aa; font-size: .88rem; }
.product-membership-price strong { color: #f1c981; }
.product-membership-price strong { font-size: 1.5rem; }
.product-summary-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.product-details-section { background: rgba(247,239,225,.90) !important; }
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}
.product-detail-card {
  padding: clamp(26px,3.5vw,38px);
  border: 1px solid rgba(117,84,55,.18);
  border-radius: 18px;
  background: rgba(255,251,243,.92);
}
.product-detail-card h2 { max-width: 520px; font-size: clamp(1.75rem,3vw,2.7rem); line-height: 1.02; }
.product-check-list,
.product-note-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.product-check-list li,
.product-note-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid rgba(117,84,55,.14);
}
.product-check-list li::before { content: "✦"; position: absolute; left: 2px; color: #a36d2b; }
.product-note-list li::before { content: "•"; position: absolute; left: 5px; color: #a36d2b; }
.product-note-card { background: rgba(242,225,195,.78); }
.product-final-cta { background: rgba(222,213,198,.88); }
.product-not-found { min-height: 65vh; display: grid; align-items: center; }
.product-not-found h1 { font-size: clamp(3rem,6vw,5.5rem); }

@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-media-card { max-width: 620px; }
  .product-detail-grid { grid-template-columns: 1fr; }
}

.site-header {
  isolation: isolate;
  background:
    radial-gradient(ellipse at 18% -20%, rgba(141, 86, 163, .32), transparent 34%),
    radial-gradient(ellipse at 76% 130%, rgba(12, 4, 20, .48), transparent 46%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0 1px, rgba(10,3,16,.035) 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.016) 0 1px, rgba(8,2,14,.028) 1px 4px),
    linear-gradient(100deg, #2a123d 0%, #37174c 46%, #281139 100%);
  border-bottom: 1px solid rgba(218, 170, 94, .34);
  box-shadow:
    inset 0 10px 24px rgba(255,255,255,.025),
    inset 0 -16px 24px rgba(10,2,16,.34),
    0 5px 20px rgba(16,6,24,.24);
  backdrop-filter: none;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .55;
  background:
    linear-gradient(104deg, transparent 0 18%, rgba(255,255,255,.022) 25%, transparent 33% 58%, rgba(0,0,0,.10) 69%, transparent 80%),
    linear-gradient(82deg, rgba(0,0,0,.10), transparent 20% 78%, rgba(255,255,255,.018));
}
.site-header::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(227,180,103,.58) 16%, rgba(242,202,132,.28) 50%, rgba(227,180,103,.58) 84%, transparent);
}
.site-header .nav-wrap { position: relative; z-index: 2; }
.site-header .site-nav a { color: #f0e2d2; text-shadow: 0 1px 1px rgba(0,0,0,.45); }
.site-header .site-nav a:hover,
.site-header .site-nav a[aria-current="page"] { color: #f0bd6c; }
.site-header .site-nav a::after { background: #dfa758; }
.site-header .menu-button {
  color: #f5e6d4;
  border-color: rgba(226,177,101,.42);
  background: rgba(16,5,24,.22);
}

@media (max-width: 900px) {
  .site-header .site-nav {
    background:
      repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, rgba(0,0,0,.035) 1px 3px),
      linear-gradient(115deg, #2b123e, #1d0b2c);
    border-color: rgba(221,169,91,.34);
    box-shadow: 0 18px 38px rgba(10,3,17,.34), inset 0 0 0 1px rgba(255,255,255,.018);
  }
}
.product-examples-section {
  color: #f7ead7;
}
.product-examples-heading {
  max-width: 760px;
  margin-bottom: 30px;
}
.product-examples-heading .eyebrow { color: #d6a05a; }
.product-examples-heading h2 { color: #fff3df; }
.product-examples-heading p { color: rgba(242, 225, 204, .76); }
.product-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.product-example-card {
  appearance: none;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(208, 153, 79, .25);
  background: #0d0a08;
  color: #f7ead7;
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 20px 48px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.product-example-card:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 166, 92, .55);
  box-shadow: 0 24px 56px rgba(0,0,0,.30);
}
.product-example-card:focus-visible {
  outline: 3px solid rgba(222, 168, 88, .92);
  outline-offset: 4px;
}
.product-example-card img {
  display: block;
  width: 100%;
  object-fit: contain;
  background: #090706;
}
.product-example-card > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(208,153,79,.16);
}
.product-example-card strong {
  font-family: var(--display);
  font-weight: 700;
}
.product-example-card small {
  flex: 0 0 auto;
  color: #d5a05c;
  font: 700 .68rem/1.2 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .product-example-grid { grid-template-columns: 1fr; }
  .product-example-card img { height: auto; max-height: 430px; }
  .product-example-card > span { align-items: center; }
}
.skip-link {
  top: -120px;
  transform: none;
  opacity: 0;
  pointer-events: none;
}
.skip-link:focus {
  top: 12px;
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 981px) {
  .site-header .brand-logo {
    width: 188px;
    height: 54px;
  }
}
@media (min-width: 981px) {
  .home-page .hero-grid {
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(46px, 5vw, 68px);
  }
  .home-page .hero-service-card {
    padding: 36px 36px 32px;
  }
  .home-page .service-point {
    padding: 20px 0;
  }
  .home-page .service-point small {
    font-size: .84rem;
    max-width: 430px;
  }
}
.home-page .question-teaser-section,
.home-page .home-more-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(116, 72, 139, .10), transparent 25rem),
    radial-gradient(circle at 12% 78%, rgba(196, 134, 65, .08), transparent 22rem),
    rgba(10, 8, 6, .90) !important;
  color: #f8ecdc;
  backdrop-filter: blur(2px);
}
.home-page .question-teaser-section .eyebrow,
.home-page .home-more-section .eyebrow {
  color: #d6a15c;
}
.home-page .question-teaser-section h2,
.home-page .home-more-section h2 {
  color: #fff4e4;
}
.home-page .question-teaser-section .question-teaser-copy > p:not(.eyebrow),
.home-page .home-more-section .section-heading > p:not(.eyebrow) {
  color: rgba(239, 224, 205, .77);
}
.home-page .question-teaser-section .muted {
  color: rgba(222, 204, 181, .64) !important;
}
.home-page .question-preview-panel {
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.30));
}
.home-page .home-more-card {
  background: rgba(255, 252, 246, .96);
  border: 1px solid rgba(209, 160, 91, .18);
  box-shadow: 0 22px 54px rgba(0,0,0,.24);
}
.home-page .home-more-media {
  height: 190px;
  min-height: 190px;
}
.home-page .home-more-copy {
  padding: 29px 30px 32px;
}
.home-page .home-more-copy p:not(.mini-label) {
  line-height: 1.64;
}
.home-page .blind-prices {
  gap: 16px;
}
.home-page .blind-prices span {
  padding: 16px 17px;
  border: 1px solid rgba(151, 101, 54, .14);
  border-radius: 11px;
}
.home-page .reflection-grid {
  gap: 22px;
}
.home-page .reflection-grid article {
  min-height: 236px;
  padding: 34px 33px 32px;
  border: 1px solid rgba(218, 164, 88, .34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.018), 0 18px 34px rgba(0,0,0,.16);
}
.home-page .reflection-mark {
  margin-bottom: 19px;
}
.memberships-page .membership-credit-explainer {
  background:
    radial-gradient(circle at 78% 30%, rgba(107, 62, 129, .12), transparent 24rem),
    radial-gradient(circle at 14% 74%, rgba(197, 132, 61, .08), transparent 20rem),
    rgba(9, 7, 5, .92) !important;
  color: #f8ecdc;
}
.memberships-page .membership-credit-explainer .eyebrow {
  color: #d5a05a;
}
.memberships-page .membership-credit-explainer h2 {
  color: #fff3e0;
}
.memberships-page .membership-credit-explainer p:not(.eyebrow) {
  color: rgba(239, 224, 205, .74);
}
.memberships-page .membership-credit-cards > div {
  background: rgba(35, 25, 18, .72);
  border-color: rgba(213, 157, 81, .28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);
}
.memberships-page .membership-credit-cards strong {
  color: #e5b66f;
}
.memberships-page .membership-credit-cards span {
  color: rgba(243, 228, 208, .74);
}
.product-examples-section {
  padding-top: clamp(76px, 6vw, 96px);
  padding-bottom: clamp(80px, 6.5vw, 102px);
  background:
    radial-gradient(circle at 84% 18%, rgba(100, 58, 122, .11), transparent 26rem),
    radial-gradient(circle at 9% 80%, rgba(195, 130, 60, .07), transparent 20rem),
    rgba(8, 6, 5, .95) !important;
}
.product-example-grid {
  gap: 28px;
}
.product-example-card {
  border-radius: 18px;
  border-color: rgba(218, 164, 88, .32);
}
.product-example-card img {
  height: clamp(300px, 34vw, 520px);
  padding: 12px;
}
.product-example-card > span {
  padding: 20px 22px 21px;
}
.product-example-card strong {
  font-size: 1.22rem;
}
.product-detail-card {
  border-color: rgba(151, 101, 54, .14);
  box-shadow: 0 16px 34px rgba(60, 38, 23, .06);
}
.product-note-card {
  border-color: rgba(184, 130, 60, .22);
}
.faq-page .faq-group {
  padding-bottom: clamp(28px, 2.8vw, 38px);
  margin-bottom: clamp(28px, 2.8vw, 38px);
}

@media (max-width: 760px) {
  .home-page .home-more-card { min-height: 0; }
  .home-page .home-more-media { height: 170px; min-height: 170px; }
  .home-page .reflection-grid article { min-height: 0; padding: 29px 25px 27px; }
  .product-example-card img { height: auto; padding: 8px; }
}
.home-page .home-more-card {
  min-height: 355px;
  color: var(--ink);
}
.home-page .home-more-card h3 {
  color: var(--ink);
}
.home-page .home-more-card .mini-label {
  color: var(--accent-deep);
}
.home-page .home-more-card p:not(.mini-label) {
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .home-page .home-more-card { min-height: 0; }
}


a.reading-card,
a.question-art-card,
a.membership-detail-card,
a.home-more-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.reading-card:focus-visible,
a.question-art-card:focus-visible,
a.membership-detail-card:focus-visible,
a.home-more-card:focus-visible {
  outline: 3px solid rgba(224, 173, 102, .95);
  outline-offset: 4px;
}

.product-noscript {
  padding: 72px 0;
  color: var(--ink);
}


.site-header .brand-image-link {
  min-width: 260px;
  flex: 0 0 auto;
}
.site-header .brand-logo {
  width: 260px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 980px) {
  .site-header .brand-image-link { min-width: 220px; }
  .site-header .brand-logo { width: 220px; max-height: 38px; }
}
@media (max-width: 760px) {
  .site-header .brand-image-link { min-width: 0; }
  .site-header .brand-logo { width: 190px; max-height: 34px; }
}
@media (max-width: 420px) {
  .site-header .brand-logo { width: 165px; max-height: 30px; }
}


:root {
  --gold-band-dark: #7b4a18;
  --gold-band-mid: #c69145;
  --gold-band-light: #f0ce8b;
}

/* Give the cloth navigation a clearer finished lower edge. */
.site-header::after {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-band-dark) 0%,
    var(--gold-band-mid) 18%,
    var(--gold-band-light) 50%,
    var(--gold-band-mid) 82%,
    var(--gold-band-dark) 100%
  );
  opacity: .9;
}

/* Top-level sections are the site's major visual banners. Keep the trim out of nested content blocks. */
main > section + section,
.product-root > section + section {
  border-top: 3px solid var(--gold-band-mid);
  border-image: linear-gradient(
    90deg,
    var(--gold-band-dark) 0%,
    var(--gold-band-mid) 17%,
    var(--gold-band-light) 50%,
    var(--gold-band-mid) 83%,
    var(--gold-band-dark) 100%
  ) 1;
}


.product-examples-heading {
  max-width: 820px;
}
.product-example-grid {
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 42px);
  max-width: 1240px;
}
.product-example-card {
  display: grid;
  grid-template-rows: auto auto;
  align-self: start;
  border-radius: 16px;
}
.product-example-card img {
  width: 100%;
  height: auto;
  max-height: none;
  padding: 0;
  object-fit: contain;
  background: #080604;
}
.product-example-card > span {
  min-height: 68px;
  padding: 18px 22px 19px;
}
.product-example-card small::after {
  content: " ↗";
}

.lightbox {
  place-items: stretch;
  padding: 16px;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(10px);
}
.lightbox-stage {
  width: 100%;
  height: calc(100vh - 32px);
  max-width: none;
  max-height: none;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-radius: 14px;
  border: 1px solid rgba(214,160,90,.52);
  background: #080604;
  box-shadow: 0 28px 100px rgba(0,0,0,.72);
}
.lightbox-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 8px 18px;
  border-bottom: 1px solid rgba(214,160,90,.24);
  background: linear-gradient(180deg, rgba(39,24,16,.98), rgba(19,13,10,.98));
  color: #f4dfbf;
}
.lightbox-toolbar > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.lightbox-controls {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
}
.lightbox-control,
.lightbox-close {
  position: static;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(214,160,90,.42);
  border-radius: 9px;
  background: rgba(12,8,6,.88);
  color: #f4dfbf;
  cursor: pointer;
  font: 700 1rem/1 ui-sans-serif, system-ui, sans-serif;
}
.lightbox-close {
  border-radius: 50%;
  font: 300 1.65rem/1 Georgia, serif;
}
.lightbox-fit {
  width: auto;
  min-width: 54px;
  padding-inline: 12px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.lightbox-control:hover,
.lightbox-close:hover,
.lightbox-control:focus-visible,
.lightbox-close:focus-visible {
  border-color: rgba(235,185,107,.82);
  background: rgba(72,45,25,.92);
  outline: none;
}
.lightbox-zoom-label {
  min-width: 54px;
  text-align: center;
  color: #dfb16d;
  font: 700 .78rem/1 ui-sans-serif, system-ui, sans-serif;
}
.lightbox-scroll {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(95,55,113,.08), transparent 34rem),
    #050403;
}
.lightbox-stage img {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  margin: 0 auto;
  transform-origin: top center;
  box-shadow: 0 16px 52px rgba(0,0,0,.4);
}
@media (max-width: 760px) {
  .lightbox { padding: 8px; }
  .lightbox-stage { height: calc(100vh - 16px); border-radius: 10px; }
  .lightbox-toolbar { min-height: 54px; padding-left: 12px; }
  .lightbox-toolbar > strong { max-width: 34vw; }
  .lightbox-controls { gap: 5px; }
  .lightbox-control,
  .lightbox-close { width: 36px; height: 36px; }
  .lightbox-fit { width: auto; min-width: 48px; padding-inline: 9px; }
  .lightbox-zoom-label { min-width: 46px; }
  .lightbox-scroll { padding: 10px; }
  .product-example-card > span { align-items: center; }
}


.product-example-grid--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(22px, 2.4vw, 34px);
}

.product-example-grid--formats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 2vw, 28px);
}

.product-example-grid--formats .product-example-card--message {
  grid-column: 1 / -1;
}

.product-example-grid--pair .product-example-card img,
.product-example-grid--formats .product-example-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.product-example-grid--formats .product-example-card--pdf > span {
  min-height: 64px;
  padding-inline: 16px;
}

@media (max-width: 820px) {
  .product-example-grid--pair,
  .product-example-grid--formats {
    grid-template-columns: 1fr;
  }
  .product-example-grid--formats .product-example-card--message {
    grid-column: auto;
  }
}


.memberships-page .membership-credit-cards {
  grid-auto-rows: 1fr;
}

.memberships-page .membership-credit-cards > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 640px) {
  .memberships-page .membership-credit-cards > div {
    min-height: 104px;
  }
}


.product-example-grid--formats {
  align-items: stretch;
}

.product-example-grid--formats .product-example-card--pdf {
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  align-self: stretch;
  overflow: hidden;
}

.product-example-grid--formats .product-example-card--pdf img {
  width: 100%;
  height: clamp(210px, 17vw, 270px);
  object-fit: cover;
  object-position: center bottom;
  background: #080604;
}

.product-example-grid--formats .product-example-card--pdf > span {
  min-height: 72px;
  height: 72px;
  box-sizing: border-box;
}

@media (max-width: 820px) {
  .product-example-grid--formats .product-example-card--pdf {
    height: auto;
  }

  .product-example-grid--formats .product-example-card--pdf img {
    height: auto;
    max-height: none;
  }

  .product-example-grid--formats .product-example-card--pdf > span {
    height: auto;
    min-height: 64px;
  }
}


.product-detail-grid > .product-note-card {
  grid-column: 1 / -1;
}

.product-note-card .product-note-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 58px);
}

.product-note-card .product-note-list li {
  margin: 0;
}

@media (max-width: 900px) {
  .product-detail-grid > .product-note-card {
    grid-column: auto;
  }
  .product-note-card .product-note-list {
    grid-template-columns: 1fr;
  }
}


.membership-kofi-hero {
  margin-top: 1.1rem;
}
.membership-kofi-action {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: .9rem;
}
.membership-detail-card:hover .membership-kofi-action {
  text-decoration: underline;
  text-underline-offset: 3px;
}


.product-price-card--configurator {
  padding: clamp(22px, 3vw, 30px);
}
.reading-configurator {
  display: grid;
  gap: 18px;
}
.config-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 4px;
}
.config-intro h2 {
  margin: 0;
  color: #fff4e3;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  line-height: 1;
}
.config-intro > p {
  max-width: 280px;
  margin: 0;
  color: #bfb09b;
  font-size: .88rem;
  line-height: 1.5;
  text-align: right;
}
.config-step {
  min-width: 0;
  margin: 0;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(214,160,90,.16);
}
.config-step legend,
.config-step-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  color: #f5dfbd;
}
.config-step legend > span:last-child,
.config-step-heading > span:last-child {
  display: grid;
  gap: 3px;
}
.config-step legend strong,
.config-step-heading strong {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.15;
}
.config-step legend small,
.config-step-heading small {
  color: #afa18f;
  font: 500 .79rem/1.45 ui-sans-serif, system-ui, sans-serif;
}
.config-step-number {
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(218,170,94,.42);
  border-radius: 50%;
  color: #e2b66d;
  font: 800 .72rem/1 ui-sans-serif, system-ui, sans-serif;
}
.config-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.config-choice-grid--three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.config-choice {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}
.config-choice input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}
.config-choice > span {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 13px 14px;
  border: 1px solid rgba(214,160,90,.16);
  border-radius: 11px;
  background: rgba(255,244,227,.035);
  transition: border-color .16s ease, background-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.config-choice strong {
  color: #f6e8d0;
  font-size: .93rem;
  line-height: 1.2;
}
.config-choice small {
  color: #aa9c89;
  font-size: .76rem;
  line-height: 1.35;
}
.config-choice:hover > span {
  border-color: rgba(224,176,103,.4);
  background: rgba(255,244,227,.055);
  transform: translateY(-1px);
}
.config-choice input:checked + span {
  border-color: rgba(224,176,103,.78);
  background: linear-gradient(135deg, rgba(126,79,34,.28), rgba(83,47,81,.18));
  box-shadow: inset 0 0 0 1px rgba(224,176,103,.12), 0 8px 24px rgba(0,0,0,.14);
}
.config-choice input:focus-visible + span {
  outline: 3px solid rgba(224,173,102,.92);
  outline-offset: 3px;
}
.config-locked-value,
.config-fixed-question {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(214,160,90,.14);
  border-radius: 10px;
  background: rgba(255,244,227,.028);
  color: #f1dfc3;
}
.config-locked-value span {
  color: #a99a86;
  font-size: .76rem;
}
.config-fixed-question {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.3;
}
.config-question-label {
  display: block;
  margin: 0 0 7px;
  color: #d8a45f;
  font: 800 .7rem/1 ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.config-question {
  width: 100%;
  resize: vertical;
  min-height: 104px;
  padding: 13px 14px;
  border: 1px solid rgba(214,160,90,.2);
  border-radius: 11px;
  background: rgba(255,250,241,.07);
  color: #fff4e3;
  font: inherit;
  line-height: 1.5;
}
.config-question::placeholder { color: rgba(221,207,188,.48); }
.config-question:focus {
  outline: 3px solid rgba(224,173,102,.3);
  outline-offset: 2px;
  border-color: rgba(224,176,103,.7);
}
.config-summary {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 2px;
  padding: 17px 18px;
  border: 1px solid rgba(224,176,103,.36);
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(124,73,32,.24), rgba(53,22,71,.2));
}
.config-summary-copy { display: grid; gap: 3px; }
.config-summary-copy > span,
.config-total > span {
  color: #c9bba7;
  font: 700 .68rem/1.2 ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.config-summary-copy strong { color: #f8ead2; font-size: .94rem; }
.config-summary-copy small { color: #ac9e8a; font-size: .76rem; line-height: 1.35; }
.config-total {
  display: grid;
  justify-items: end;
  gap: 3px;
  min-width: 86px;
}
.config-total strong {
  color: #f0c879;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}
@media (max-width: 620px) {
  .config-intro { align-items: start; flex-direction: column; gap: 8px; }
  .config-intro > p { max-width: none; text-align: left; }
  .config-choice-grid,
  .config-choice-grid--three { grid-template-columns: 1fr; }
  .config-choice > span { min-height: 0; }
  .config-summary { grid-template-columns: 1fr; }
  .config-total { justify-items: start; }
  .config-locked-value { align-items: flex-start; flex-direction: column; gap: 4px; }
}


.product-configurator-shell {
  margin-top: clamp(34px, 4.8vw, 60px);
}

.product-configurator-shell .product-price-card--configurator {
  margin-top: 0;
  padding: clamp(28px, 4vw, 42px);
  border-color: rgba(220, 170, 96, .30);
  background:
    radial-gradient(circle at 88% 0%, rgba(91, 40, 112, .18), transparent 34%),
    linear-gradient(135deg, rgba(24, 17, 12, .91), rgba(15, 10, 8, .87));
  box-shadow: 0 28px 76px rgba(0, 0, 0, .24);
}

.product-configurator-shell .reading-configurator {
  width: 100%;
  max-width: none;
  gap: 20px;
}

.product-configurator-shell .config-intro {
  padding-bottom: 10px;
}

.product-configurator-shell .config-intro > p {
  max-width: 420px;
}

.product-configurator-shell .config-step {
  padding-top: 22px;
}

.product-configurator-shell .config-choice-grid {
  gap: 12px;
}

.product-configurator-shell .config-choice > span {
  min-height: 78px;
  padding: 15px 17px;
}

.product-configurator-shell .config-question {
  min-height: 120px;
}


.config-reveal-shell {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    grid-template-rows 1.15s cubic-bezier(.16, 1, .3, 1),
    opacity .78s ease .12s,
    transform 1.15s cubic-bezier(.16, 1, .3, 1);
}

.config-reveal-shell[hidden] {
  display: none !important;
}

.config-reveal-shell.is-visible {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.config-reveal-inner {
  min-height: 0;
  overflow: hidden;
}

.config-reveal-shell .config-step,
.config-reveal-shell .config-summary {
  transform-origin: top center;
  transition: opacity .72s ease .20s, transform 1.05s cubic-bezier(.16, 1, .3, 1);
}

.config-reveal-shell:not(.is-visible) .config-step,
.config-reveal-shell:not(.is-visible) .config-summary {
  opacity: 0;
  transform: translateY(-8px) scale(.995);
}

.product-price-card--configurator {
  transform-origin: top center;
}

.product-price-card--configurator.config-wave-active {
  animation: config-wave-breathe 1.45s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes config-wave-breathe {
  0% { box-shadow: 0 28px 76px rgba(0, 0, 0, .24); }
  42% { box-shadow: 0 34px 92px rgba(33, 10, 43, .34), 0 0 0 1px rgba(224,176,103,.06); }
  100% { box-shadow: 0 28px 76px rgba(0, 0, 0, .24); }
}

@media (min-width: 1100px) {
  .product-hero-grid {
    grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
    gap: clamp(46px, 5vw, 76px);
    align-items: center;
  }

  .product-media-card {
    max-width: 520px;
  }

  .product-summary {
    max-width: 760px;
  }

  .product-configurator-shell .config-choice-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-configurator-shell {
    margin-top: 30px;
  }

  .product-configurator-shell .product-price-card--configurator {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .config-reveal-shell,
  .config-reveal-shell .config-step,
  .config-reveal-shell .config-summary {
    transition: none;
  }
  .product-price-card--configurator.config-wave-active { animation: none; }
}


.home-page .question-preview-panel.question-preview-art {
  width: min(620px, 100%);
  min-height: 0;
  padding: 0;
  position: relative;
  isolation: isolate;
  background: none;
  overflow: visible;
  filter: drop-shadow(0 24px 32px rgba(36, 19, 8, .28));
}
.home-page .question-preview-panel.question-preview-art::before,
.home-page .question-preview-panel.question-preview-art::after { display: none; }
.question-preview-art > img { display: block; width: 100%; height: auto; }


.questions-page .question-pricing.parchment-panel {
  color: #4f2d19; text-align: center; padding-left: 64px; padding-right: 64px;
}
.questions-page .question-pricing.parchment-panel > * { color: inherit; }
.questions-page .question-pricing .mini-label { margin-bottom: 6px; color: inherit; letter-spacing: .12em; }
.questions-page .parchment-pricing-intro {
  margin: 0 auto 14px; max-width: 31ch; color: inherit;
  font-family: Georgia, "Times New Roman", serif; font-size: .94rem; line-height: 1.4;
}
.questions-page .question-pricing .pricing-row {
  grid-template-columns: .72fr 1fr 1fr; align-items: center; gap: 12px; padding: 14px 0;
  color: inherit; border-color: rgba(79,45,25,.22); text-align: center;
}
.questions-page .question-pricing .pricing-row strong,
.questions-page .question-pricing .pricing-row span,
.questions-page .question-pricing .pricing-note { color: inherit; }
.questions-page .question-pricing .pricing-note { margin: 16px auto 0; max-width: 34ch; font-weight: 600; }
.questions-page .parchment-signature {
  margin: 18px auto 0; padding-top: 14px; width: min(100%, 315px);
  border-top: 1px solid rgba(79,45,25,.26); color: inherit;
  font-family: Georgia, "Times New Roman", serif; font-size: .88rem; letter-spacing: .035em;
}
@media (max-width: 520px) {
  .questions-page .question-pricing.parchment-panel { padding-left: 36px; padding-right: 36px; }
  .questions-page .question-pricing .pricing-row { gap: 7px; font-size: .72rem; }
  .questions-page .parchment-pricing-intro { font-size: .86rem; }
}


.home-page .question-preview-panel.question-preview-art {
  z-index: 2;
}
.home-page .question-preview-art > img {
  position: relative;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}


.site-footer {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% -20%, rgba(141, 86, 163, .32), transparent 34%),
    radial-gradient(ellipse at 76% 130%, rgba(12, 4, 20, .48), transparent 46%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0 1px, rgba(10,3,16,.035) 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.016) 0 1px, rgba(8,2,14,.028) 1px 4px),
    linear-gradient(100deg, #2a123d 0%, #37174c 46%, #281139 100%);
  border-top: 0;
  box-shadow:
    inset 0 16px 26px rgba(10,2,16,.24),
    inset 0 -12px 22px rgba(10,2,16,.32);
  backdrop-filter: none;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  z-index: -1;
  pointer-events: none;
  opacity: .55;
  background:
    linear-gradient(104deg, transparent 0 18%, rgba(255,255,255,.022) 25%, transparent 33% 58%, rgba(0,0,0,.10) 69%, transparent 80%),
    linear-gradient(82deg, rgba(0,0,0,.10), transparent 20% 78%, rgba(255,255,255,.018));
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--gold-band-dark) 0%,
    var(--gold-band-mid) 18%,
    var(--gold-band-light) 50%,
    var(--gold-band-mid) 82%,
    var(--gold-band-dark) 100%
  );
  opacity: .9;
}
.site-footer .footer-grid p { color: #d8c8ba; }
.site-footer .footer-links a { color: #f0e2d2; text-shadow: 0 1px 1px rgba(0,0,0,.45); }
.site-footer .footer-links a:hover { color: #f0bd6c; }
.site-footer .footer-bottom {
  color: #bfae9d;
  border-top-color: rgba(226,177,101,.22);
}


.home-page .question-preview-panel.question-preview-art {
  pointer-events: auto !important;
}
.home-page .question-preview-map {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.home-page .question-preview-map a {
  pointer-events: all;
  cursor: pointer;
  outline: none;
}
.home-page .question-map-hit {
  fill: rgba(255, 229, 181, 0);
  stroke: rgba(116, 67, 24, 0);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  pointer-events: all;
  transition: fill .45s ease, stroke .45s ease, filter .45s ease;
}
.home-page .question-preview-map a:hover .question-map-hit,
.home-page .question-preview-map a:focus .question-map-hit,
.home-page .question-preview-map a:focus-visible .question-map-hit {
  fill: rgba(255, 229, 181, .10);
  stroke: rgba(116, 67, 24, .72);
  filter: drop-shadow(0 0 8px rgba(181, 119, 48, .20));
}
.home-page .question-preview-map a:focus-visible .question-map-hit {
  stroke-width: 3;
}
/* Keep the Common Questions artwork and SVG hit map on identical geometry. */
.home-page .question-preview-panel.question-preview-art {
  aspect-ratio: 1122 / 1402;
  position: relative;
}
.home-page .question-preview-art > img,
.home-page .question-preview-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-page .question-preview-art > img { object-fit: fill; }
.home-page .question-preview-map { overflow: hidden; }

/* Configurator pages, progress and reading-detail intake. */
.config-stage-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 6px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(214,160,90,.16);
}
.config-stage-track > span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: rgba(207,190,168,.52);
  font: 750 .72rem/1 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .04em;
  transition: color .55s ease, opacity .55s ease;
}
.config-stage-track b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid rgba(214,160,90,.22);
  border-radius: 50%;
  color: inherit;
  font-size: .7rem;
  transition: border-color .55s ease, background-color .55s ease, color .55s ease;
}
.config-stage-track .is-current { color: #edc57e; }
.config-stage-track .is-current b {
  border-color: rgba(231,182,105,.76);
  background: rgba(139,88,37,.22);
  color: #ffe2aa;
}
.config-stage-track .is-complete { color: #c6ac85; }
.config-stage-track .is-complete b::before { content: "✓"; }
.config-stage-track .is-complete b { font-size: 0; }
.config-stage-track .is-complete b::before { font-size: .72rem; }

.config-page {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .72s ease, transform 1.05s cubic-bezier(.16,1,.3,1);
}
.config-page.is-active {
  opacity: 1;
  transform: translateY(0);
}
.config-page.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
}
.config-page[hidden] { display: none !important; }
.product-price-card--configurator.config-page-resizing {
  transition: height 1.15s cubic-bezier(.16,1,.3,1), box-shadow 1.15s cubic-bezier(.16,1,.3,1);
}

.config-summary-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.config-continue-button {
  min-width: 170px;
  white-space: nowrap;
}

.config-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.config-page-heading h2 {
  margin: 3px 0 8px;
  color: #fff4e3;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}
.config-page-heading > div > p:last-child {
  max-width: 650px;
  margin: 0;
  color: #b8a995;
  line-height: 1.55;
}
.config-text-button {
  appearance: none;
  border: 0;
  padding: 8px 0;
  background: none;
  color: #d9ae6c;
  cursor: pointer;
  font: 800 .76rem/1.2 ui-sans-serif, system-ui, sans-serif;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.config-text-button:hover { color: #f0c77f; }
.config-text-button:focus-visible {
  outline: 2px solid #e0ad66;
  outline-offset: 5px;
  border-radius: 3px;
}

.config-details-layout {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.7fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}
.config-details-recap {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(218,170,94,.25);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(113,67,30,.20), rgba(50,27,55,.14));
  box-shadow: inset 0 0 0 1px rgba(255,244,227,.018);
}
.config-details-recap > strong {
  color: #f8e6ca;
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1.25;
}
.config-details-recap > span {
  min-height: 1.2em;
  color: #ac9c87;
  font-size: .78rem;
  line-height: 1.4;
}
.config-details-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(218,170,94,.16);
}
.config-details-price small {
  color: #b8a995;
  font: 750 .68rem/1 ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.config-details-price strong {
  color: #f0c879;
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1;
}
.config-details-fields {
  display: grid;
  gap: 24px;
}
.config-detail-field {
  padding-top: 22px;
  border-top: 1px solid rgba(214,160,90,.16);
}
.config-detail-field:first-child { padding-top: 0; border-top: 0; }
.config-question-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.config-question-label > span {
  color: rgba(210,190,166,.55);
  font-size: .62rem;
  letter-spacing: .08em;
}
.config-field-note {
  display: block;
  margin-top: 7px;
  color: #9f917e;
  font-size: .76rem;
  line-height: 1.45;
}
.config-question--context { min-height: 150px; }
.config-details-ready {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 18px;
  border: 1px solid rgba(224,176,103,.25);
  border-radius: 12px;
  background: rgba(255,244,227,.035);
}
.config-details-ready > div { display: grid; gap: 3px; }
.config-details-ready span {
  color: #c9bba7;
  font: 750 .65rem/1.2 ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.config-details-ready strong { color: #f5dfbd; font-size: .9rem; }
.config-details-ready > small {
  max-width: 280px;
  color: #9f917e;
  font-size: .74rem;
  line-height: 1.4;
  text-align: right;
}

@media (max-width: 780px) {
  .config-stage-track > span { justify-content: center; }
  .config-stage-track > span > span { display: none; }
  .config-summary-actions { align-items: stretch; flex-direction: column; }
  .config-total { justify-items: start; }
  .config-continue-button { width: 100%; }
  .config-page-heading { align-items: start; flex-direction: column; gap: 8px; }
  .config-details-layout { grid-template-columns: 1fr; }
  .config-details-recap { position: static; }
  .config-details-ready { align-items: start; flex-direction: column; gap: 8px; }
  .config-details-ready > small { max-width: none; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .config-page,
  .product-price-card--configurator.config-page-resizing { transition: none; }
}


.config-personal-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}
.config-personal-heading .config-field-note { margin-top: 0; }
.config-personal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}
.config-mini-field { display: grid; gap: 7px; }
.config-mini-field > span {
  color: #d6c4ab;
  font: 760 .7rem/1.25 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .035em;
}
.config-mini-field em {
  margin-left: 5px;
  color: rgba(210,190,166,.55);
  font-style: normal;
  font-weight: 650;
  font-size: .62rem;
  letter-spacing: .06em;
}
.config-text-input {
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  border: 1px solid rgba(214,160,90,.22);
  border-radius: 10px;
  padding: 11px 13px;
  background: rgba(255,244,227,.045);
  color: #f6e8d3;
  font: 500 .92rem/1.35 ui-sans-serif, system-ui, sans-serif;
  transition: border-color .35s ease, background-color .35s ease, box-shadow .35s ease;
}
.config-text-input::placeholder { color: rgba(203,187,165,.45); }
.config-text-input:hover { border-color: rgba(224,176,103,.38); }
.config-text-input:focus {
  outline: 0;
  border-color: rgba(231,182,105,.76);
  background: rgba(255,244,227,.065);
  box-shadow: 0 0 0 3px rgba(183,120,49,.11);
}
.config-text-input[type="date"] { color-scheme: dark; }
@media (max-width: 700px) { .config-personal-grid { grid-template-columns: 1fr; } }


.config-detail-field--optional {
  padding-top: 22px;
}
.config-optional-card {
  border: 1px solid rgba(214,160,90,.18);
  border-radius: 14px;
  background: rgba(255,244,227,.024);
  overflow: clip;
  transition: border-color .38s ease, background-color .38s ease, box-shadow .38s ease;
}
.config-optional-card:hover {
  border-color: rgba(224,176,103,.34);
  background: rgba(255,244,227,.032);
}
.config-optional-card.is-open,
.config-optional-card.has-value {
  border-color: rgba(224,176,103,.28);
}
.config-optional-card.is-open {
  background: rgba(255,244,227,.042);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}
.config-optional-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
}
.config-optional-toggle:focus-visible {
  outline: 2px solid rgba(231,182,105,.82);
  outline-offset: -2px;
}
.config-optional-toggle-copy {
  display: grid;
  gap: 4px;
}
.config-optional-toggle-copy strong {
  color: #f5e0be;
  font-size: .96rem;
  line-height: 1.2;
}
.config-optional-toggle-copy small {
  color: #a59580;
  font-size: .75rem;
  line-height: 1.45;
}
.config-optional-toggle-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  flex: 0 0 auto;
}
.config-optional-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(224,176,103,.11);
  color: #ddb374;
  font: 760 .63rem/1 ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.config-optional-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c9b9a3;
  font-size: .75rem;
  line-height: 1.3;
}
.config-optional-summary::after {
  content: "+";
  color: #d6a45e;
  font: 500 1.05rem/1 var(--display);
  transition: transform .45s cubic-bezier(.22,.7,.2,1), color .3s ease;
}
.config-optional-card.is-open .config-optional-summary::after {
  transform: rotate(45deg);
  color: #f0c879;
}
.config-optional-card.has-value .config-optional-summary {
  color: #ecd9b8;
}
.config-optional-panel {
  padding: 0 18px 18px;
  animation: configOptionalOpen .55s cubic-bezier(.22,.7,.2,1) both;
}
.config-optional-field-label {
  display: block;
  margin-bottom: 10px;
  color: #d6c4ab;
  font: 760 .72rem/1.25 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .04em;
}
@keyframes configOptionalOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 620px) {
  .config-personal-grid { grid-template-columns: 1fr; }
  .config-optional-toggle {
    align-items: start;
    flex-direction: column;
  }
  .config-optional-toggle-meta { justify-items: start; }
}
@media (prefers-reduced-motion: reduce) {
  .config-optional-panel { animation: none; }
}


.config-choice strong {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
}
.config-choice-increment {
  color: #e4b86f;
  font: 760 .7rem/1 ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  letter-spacing: .025em;
  white-space: nowrap;
}
.config-choice input:checked + span .config-choice-increment { color: #f1ca83; }


.config-details-ready--recap {
  margin-top: 8px;
  padding: 15px 0 0;
  border: 0;
  border-top: 1px solid rgba(218,170,94,.16);
  border-radius: 0;
  background: transparent;
  display: grid;
  gap: 7px;
}
.config-details-ready--recap > small {
  max-width: none;
  text-align: left;
}


.config-people-list {
  display: grid;
  gap: 16px;
}
.config-person-card {
  border: 1px solid rgba(214,160,90,.18);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255,244,227,.024);
  box-shadow: inset 0 0 0 1px rgba(255,244,227,.012);
}
.config-person-card-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}
.config-person-card-heading > div {
  display: grid;
  gap: 3px;
}
.config-person-card-heading span {
  color: #a99882;
  font: 760 .62rem/1 ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.config-person-card-heading strong {
  color: #f3dfbd;
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.2;
}
.config-remove-person {
  border: 0;
  padding: 4px 0;
  background: transparent;
  color: #b8a68d;
  font: 700 .68rem/1.2 ui-sans-serif, system-ui, sans-serif;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.config-remove-person:hover { color: #e2bd7c; }
.config-remove-person:focus-visible {
  outline: 2px solid #e0ad66;
  outline-offset: 4px;
  border-radius: 3px;
}
.config-person-extras {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.config-person-extra {
  border: 1px solid rgba(214,160,90,.16);
  border-radius: 11px;
  background: rgba(255,244,227,.02);
  overflow: clip;
}
.config-person-extra[open] {
  border-color: rgba(224,176,103,.3);
  background: rgba(255,244,227,.035);
}
.config-person-extra > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 11px 12px;
  cursor: pointer;
  user-select: none;
}
.config-person-extra > summary::-webkit-details-marker { display: none; }
.config-person-extra > summary > span {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
}
.config-person-extra > summary strong {
  color: #d9c6aa;
  font: 760 .7rem/1.2 ui-sans-serif, system-ui, sans-serif;
}
.config-person-extra > summary em {
  color: rgba(210,190,166,.5);
  font: 650 .58rem/1 ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.config-person-extra > summary small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #aa9a84;
  font-size: .68rem;
}
.config-person-extra > summary small::after {
  content: "+";
  color: #d6a45e;
  font: 500 1rem/1 var(--display);
  transition: transform .4s cubic-bezier(.22,.7,.2,1);
}
.config-person-extra[open] > summary small::after { transform: rotate(45deg); }
.config-person-extra-body {
  padding: 0 12px 12px;
  animation: configOptionalOpen .5s cubic-bezier(.22,.7,.2,1) both;
}
.config-add-person {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  min-height: 42px;
  border: 1px solid rgba(224,176,103,.25);
  border-radius: 10px;
  padding: 9px 14px;
  background: rgba(255,244,227,.03);
  color: #ddc8a8;
  font: 760 .75rem/1 ui-sans-serif, system-ui, sans-serif;
  cursor: pointer;
  transition: border-color .3s ease, background-color .3s ease, color .3s ease;
}
.config-add-person span {
  color: #e1b66f;
  font-family: var(--display);
  font-size: 1.05rem;
}
.config-add-person:hover {
  border-color: rgba(224,176,103,.48);
  background: rgba(255,244,227,.05);
  color: #f1dfc3;
}
.config-add-person:focus-visible {
  outline: 2px solid #e0ad66;
  outline-offset: 4px;
}
@media (max-width: 620px) {
  .config-person-card { padding: 15px; }
  .config-person-extras { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .config-person-extra-body { animation: none; }
}


.config-page--choices {
  display: grid;
  gap: 18px;
}
.config-page--choices .config-intro {
  align-items: start;
  padding: 4px 4px 12px;
}
.config-page--choices .config-intro h2 {
  margin-top: 3px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: .98;
}
.config-page--choices .config-intro > p {
  max-width: 390px;
  padding: 12px 14px;
  border: 1px solid rgba(214,160,90,.14);
  border-radius: 11px;
  background: rgba(255,244,227,.025);
  color: #b9aa96;
  text-align: left;
}
.config-page--choices .config-step {
  padding: 21px 22px 22px;
  border: 1px solid rgba(214,160,90,.17);
  border-radius: 15px;
  background:
    radial-gradient(circle at 92% 0%, rgba(92,43,104,.09), transparent 34%),
    rgba(255,244,227,.023);
  box-shadow: inset 0 0 0 1px rgba(255,244,227,.008);
}
.config-page--choices .config-step legend,
.config-page--choices .config-step-heading {
  margin-bottom: 17px;
  gap: 14px;
}
.config-page--choices .config-step legend strong,
.config-page--choices .config-step-heading strong {
  color: #f7e6c8;
  font-size: 1.18rem;
}
.config-page--choices .config-step legend small,
.config-page--choices .config-step-heading small {
  margin-top: 1px;
  max-width: 720px;
  color: #aa9b88;
  font-size: .8rem;
}
.config-page--choices .config-step-number {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  border-color: rgba(226,178,102,.5);
  background: rgba(147,89,36,.09);
  color: #efc57d;
  font-size: .76rem;
}
.config-page--choices .config-choice-grid {
  gap: 13px;
}
.config-page--choices .config-choice > span {
  position: relative;
  min-height: 88px;
  padding: 17px 18px;
  border-radius: 12px;
  border-color: rgba(214,160,90,.17);
  background: linear-gradient(145deg, rgba(255,244,227,.04), rgba(255,244,227,.025));
  align-content: center;
}
.config-page--choices .config-choice strong {
  padding-right: 28px;
  color: #f8ead3;
  font-size: 1rem;
}
.config-page--choices .config-choice small {
  max-width: 92%;
  color: #a99b88;
  font-size: .77rem;
  line-height: 1.42;
}
.config-page--choices .config-choice:hover > span {
  border-color: rgba(229,183,111,.5);
  background: linear-gradient(145deg, rgba(255,244,227,.058), rgba(100,50,103,.05));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
}
.config-page--choices .config-choice input:checked + span {
  border-color: rgba(232,188,118,.82);
  background:
    linear-gradient(135deg, rgba(139,86,35,.27), rgba(83,43,87,.18)),
    rgba(255,244,227,.035);
  box-shadow:
    inset 0 0 0 1px rgba(239,196,128,.12),
    0 10px 28px rgba(0,0,0,.14);
}
.config-page--choices .config-choice input:checked + span::after {
  content: "✓";
  position: absolute;
  top: 13px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(235,190,118,.58);
  border-radius: 50%;
  background: rgba(128,76,30,.24);
  color: #f3cc88;
  font: 800 .68rem/1 ui-sans-serif, system-ui, sans-serif;
}
.config-page--choices .config-choice input:checked + span .config-choice-increment {
  color: #f3cb83;
}
.config-page--choices .config-summary {
  margin-top: 0;
  padding: 20px 21px;
  border-radius: 14px;
  border-color: rgba(229,181,108,.42);
  background:
    radial-gradient(circle at 96% 0%, rgba(111,48,126,.16), transparent 34%),
    linear-gradient(120deg, rgba(126,75,32,.25), rgba(44,22,57,.24));
  box-shadow: inset 0 0 0 1px rgba(255,244,227,.018), 0 12px 30px rgba(0,0,0,.11);
}
.config-page--choices .config-summary-copy {
  gap: 5px;
}
.config-page--choices .config-summary-copy strong {
  color: #faecd5;
  font-size: 1.02rem;
}
.config-page--choices .config-summary-copy small {
  max-width: 560px;
}
.config-page--choices .config-summary-actions {
  gap: 20px;
}
.config-page--choices .config-total {
  min-width: 104px;
  padding-right: 3px;
}
.config-page--choices .config-total strong {
  font-size: 2rem;
}
.config-page--choices .config-continue-button {
  min-width: 190px;
  min-height: 46px;
  box-shadow: 0 8px 22px rgba(118,66,22,.18);
}

@media (max-width: 780px) {
  .config-page--choices .config-intro > p { width: 100%; max-width: none; }
  .config-page--choices .config-step { padding: 18px 16px; }
  .config-page--choices .config-choice > span { min-height: 0; }
  .config-page--choices .config-summary { padding: 18px; }
}


.config-choice-base-price {
  color: #e7bd78;
  font: 780 .72rem/1 ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  letter-spacing: .02em;
  white-space: nowrap;
}
.config-choice input:checked + span .config-choice-base-price,
.config-page--choices .config-choice input:checked + span .config-choice-base-price {
  color: #f3cf8e;
}


.home-page .home-more-section {
  background: rgba(247, 241, 231, .90) !important;
  color: var(--ink);
  backdrop-filter: none;
}
.home-page .home-more-section .eyebrow {
  color: var(--accent-deep);
}
.home-page .home-more-section h2 {
  color: var(--ink);
}
.home-page .home-more-section .section-heading > p:not(.eyebrow) {
  color: #6c5e52;
}
.home-page .home-more-card {
  background: rgba(255, 252, 246, .96);
  border-color: rgba(111, 72, 45, .16);
  box-shadow: 0 20px 48px rgba(55,34,21,.09);
}
.home-page .final-cta {
  background:
    radial-gradient(circle at 80% 22%, rgba(104, 61, 126, .11), transparent 24rem),
    radial-gradient(circle at 14% 76%, rgba(196, 132, 62, .08), transparent 20rem),
    rgba(9, 7, 5, .93) !important;
  border-top: 1px solid rgba(214,160,90,.16);
}

.memberships-page .membership-rules-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(103, 60, 124, .10), transparent 24rem),
    radial-gradient(circle at 12% 78%, rgba(195, 130, 60, .07), transparent 20rem),
    rgba(9, 7, 5, .93) !important;
  color: #f8ecdc;
}
.memberships-page .membership-rules-section .eyebrow {
  color: #d5a05a;
}
.memberships-page .membership-rules-section h2 {
  color: #fff3e0;
}
.memberships-page .membership-rules-section .faq-list details {
  border-color: rgba(218, 169, 99, .22);
}
.memberships-page .membership-rules-section .faq-list summary {
  color: #f3dfc2;
}
.memberships-page .membership-rules-section .faq-list summary::after {
  color: #d9a55f;
}
.memberships-page .membership-rules-section .faq-list details p {
  color: rgba(239, 224, 205, .74);
}
.memberships-page .final-cta {
  background: rgba(247, 241, 231, .90) !important;
}


/* Configurator progress belongs to the right side of each step header on wide screens. */
.reading-configurator {
  position: relative;
}
@media (min-width: 781px) {
  .reading-configurator > .config-stage-track {
    position: absolute;
    top: 3px;
    right: 0;
    z-index: 4;
    width: min(440px, 48%);
    margin: 0;
    padding: 0;
    border-bottom: 0;
  }
  .reading-configurator > .config-stage-track > span {
    position: relative;
    justify-content: center;
    gap: 8px;
    min-height: 36px;
    padding: 5px 9px;
    border: 1px solid rgba(214,160,90,.12);
    border-radius: 999px;
    background: rgba(255,244,227,.018);
  }
  .reading-configurator > .config-stage-track > span:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(100% + 1px);
    top: 50%;
    width: 10px;
    height: 1px;
    background: rgba(214,160,90,.20);
  }
  .reading-configurator > .config-stage-track .is-current {
    border-color: rgba(229,181,108,.36);
    background: linear-gradient(135deg, rgba(136,82,34,.16), rgba(74,34,82,.14));
    box-shadow: inset 0 0 0 1px rgba(255,239,210,.018);
  }
  .config-page--choices .config-intro,
  .config-page--details .config-page-heading {
    min-height: 70px;
    padding-right: min(470px, 51%);
  }
}

/* Keep the progress tracker clear and compact when it returns to the top on mobile. */
@media (max-width: 780px) {
  .reading-configurator > .config-stage-track {
    margin-bottom: 14px;
    padding-bottom: 16px;
  }
}

/* The secondary hero action should live in the same warm palette as the rest of the shop. */
.product-summary-actions .button-secondary {
  color: #ead8bc;
  border-color: rgba(218,170,94,.34);
  background: linear-gradient(135deg, rgba(133,78,31,.14), rgba(78,38,84,.10));
  box-shadow: inset 0 0 0 1px rgba(255,239,210,.015);
}
.product-summary-actions .button-secondary:hover {
  color: #f6dfb8;
  border-color: rgba(229,181,108,.58);
  background: linear-gradient(135deg, rgba(147,88,34,.22), rgba(88,42,95,.15));
}

/* Relationship questions: three balanced cards, then two centred beneath. */
@media (min-width: 1061px) {
  .questions-page .relationship-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
  }
  .questions-page .relationship-grid > .question-art-card {
    grid-column: span 2;
    width: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    justify-self: stretch;
  }
  .questions-page .relationship-grid > .question-art-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .questions-page .relationship-grid > .question-art-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
  .questions-page .relationship-grid .question-art-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
  .questions-page .relationship-grid .question-card-copy {
    align-self: stretch;
    padding: 25px 25px 27px;
  }
}

/* Give the four-up membership cards a little more air without losing the four-card row. */
@media (min-width: 1200px) {
  .memberships-page .membership-tier-section > .shell {
    width: min(calc(100% - 48px), 1540px);
  }
  .memberships-page .membership-page-grid {
    max-width: none;
    gap: 22px;
  }
  .memberships-page .membership-detail-copy {
    padding: 28px 25px 30px;
  }
  .memberships-page .membership-balance {
    margin-bottom: 18px;
  }
  .memberships-page .membership-facts div {
    padding: 10px 0;
  }
  .memberships-page .membership-example {
    margin-top: 18px;
    line-height: 1.55;
  }
  .memberships-page .membership-kofi-action {
    margin-top: 18px;
  }
}


@media (min-width: 781px) {
  .config-page--choices .config-intro {
    display: block;
  }
  .config-page--choices .config-intro > p {
    max-width: 520px;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
  }
  .config-page--details .config-page-heading {
    position: relative;
    display: block;
    align-items: initial;
  }
  .config-page--details .config-text-button {
    position: absolute;
    top: 45px;
    right: 0;
  }
}


@media (max-width: 780px) {
  .reading-configurator > .config-stage-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 0 0 18px;
    padding: 0;
    border-bottom: 0;
  }
  .reading-configurator > .config-stage-track > span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 6px 7px;
    border: 1px solid rgba(214,160,90,.12);
    border-radius: 999px;
    background: rgba(255,244,227,.018);
    font-size: .64rem;
    letter-spacing: .025em;
    white-space: nowrap;
  }
  .reading-configurator > .config-stage-track > span > span {
    display: inline !important;
  }
  .reading-configurator > .config-stage-track b {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    font-size: .62rem;
  }
  .reading-configurator > .config-stage-track .is-current {
    border-color: rgba(229,181,108,.34);
    background: linear-gradient(135deg, rgba(136,82,34,.16), rgba(74,34,82,.14));
  }
}

@media (max-width: 390px) {
  .reading-configurator > .config-stage-track > span {
    gap: 4px;
    padding-inline: 5px;
    font-size: .59rem;
  }
  .reading-configurator > .config-stage-track b {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}


@media (min-width: 781px) {
  .config-page--details .config-page-heading {
    min-height: 154px;
  }
  .config-page--details .config-text-button[data-config-back-to-choices] {
    top: 124px;
    right: 0;
    z-index: 5;
  }
}


.product-starting-price {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin: 2px 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(218,170,94,.24);
  border-radius: 999px;
  background: rgba(255,244,227,.045);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.product-starting-price span,
.product-starting-price small {
  color: #bca98e;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.product-starting-price strong {
  color: #f0c879;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
}
@media (max-width: 620px) {
  .product-starting-price { margin-bottom: 12px; }
}


/* Standard reading example pairs should read as one balanced gallery row.
   The taller preview determines the shared card height; the shorter preview
   is centred within its dark stage rather than leaving a shorter card. */
@media (min-width: 821px) {
  .product-example-grid--pair {
    align-items: stretch;
  }

  .product-example-grid--pair .product-example-card {
    height: 100%;
    align-self: stretch;
    grid-template-rows: minmax(0, 1fr) 72px;
  }

  .product-example-grid--pair .product-example-card img {
    align-self: center;
    justify-self: center;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .product-example-grid--pair .product-example-card > span {
    height: 72px;
    min-height: 72px;
    box-sizing: border-box;
    align-items: center;
  }
}

/* Human-readable site map */
.site-map-page main {
  min-height: 70vh;
  background:
    radial-gradient(circle at 50% 10%, rgba(214, 160, 90, .13), transparent 34%),
    rgba(8, 6, 4, .82);
}
.site-map-section {
  padding: clamp(46px, 6vw, 86px) 0;
}
.site-map-shell {
  width: min(1180px, calc(100% - 28px));
}
.site-map-scroll {
  position: relative;
  isolation: isolate;
  padding: clamp(155px, 15vw, 215px) clamp(62px, 8vw, 122px) clamp(116px, 11vw, 170px);
  color: #4a2a18;
  background:
    linear-gradient(rgba(255, 244, 213, .06), rgba(255, 244, 213, .06)),
    url("assets/questions/parchment-v3.webp") center / 100% 100% no-repeat;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, .42));
}
.site-map-intro {
  max-width: 680px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}
.site-map-intro .mini-label {
  margin-bottom: 8px;
  color: #7c491f;
}
.site-map-intro h1 {
  margin-bottom: 12px;
  color: #3d2113;
  font-size: clamp(2.45rem, 5vw, 4.15rem);
}
.site-map-intro p:last-child {
  margin: 0;
  color: #65452f;
  font-size: 1rem;
}
.site-map-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 58px) clamp(42px, 6vw, 78px);
}
.site-map-group-wide {
  grid-column: 1 / -1;
}
.site-map-group h2 {
  margin: 0 0 18px;
  padding-bottom: 10px;
  color: #4b2917;
  border-bottom: 1px solid rgba(85, 44, 22, .34);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  text-align: center;
}
.site-map-list {
  display: grid;
  gap: 3px;
}
.site-map-question-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(38px, 6vw, 76px);
}
.site-map-entry {
  display: block;
  padding: 12px 5px 13px;
  color: #4c2b19;
  border-bottom: 1px solid rgba(85, 44, 22, .18);
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}
.site-map-entry strong {
  display: block;
  color: #5b2f17;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-color: rgba(91, 47, 23, .38);
  text-underline-offset: 4px;
}
.site-map-entry span {
  display: block;
  margin-top: 5px;
  color: #6a4b36;
  font: 600 .88rem/1.48 ui-sans-serif, system-ui, sans-serif;
}
.site-map-entry:hover,
.site-map-entry:focus-visible {
  color: #8a4f1d;
  transform: translateY(-1px);
}
.site-map-entry:hover strong,
.site-map-entry:focus-visible strong {
  color: #8a4f1d;
  text-decoration-color: currentColor;
}
.site-map-signature {
  margin: clamp(34px, 4vw, 52px) auto 0;
  color: #6a3b20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .92rem;
  letter-spacing: .05em;
  text-align: center;
}
.owner-access-link {
  display: inline-block;
  margin-left: .2em;
  color: inherit;
  opacity: .34;
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}
.owner-access-link:hover,
.owner-access-link:focus-visible {
  color: #f0bd6c;
  opacity: 1;
  transform: rotate(18deg);
}

@media (max-width: 760px) {
  .site-map-scroll {
    padding: clamp(112px, 23vw, 150px) clamp(40px, 10vw, 68px) clamp(92px, 19vw, 130px);
  }
  .site-map-groups,
  .site-map-question-list {
    grid-template-columns: 1fr;
  }
  .site-map-group-wide {
    grid-column: auto;
  }
  .site-map-entry span {
    font-size: .86rem;
  }
}

@media (max-width: 430px) {
  .site-map-shell {
    width: calc(100% - 12px);
  }
  .site-map-scroll {
    padding-left: 34px;
    padding-right: 34px;
  }
  .site-map-intro p:last-child {
    font-size: .9rem;
  }
}

/* V4.1 checkout review */
.config-details-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 8px;
}
.config-details-actions small {
  max-width: 270px;
  color: rgba(242, 225, 204, .68);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .78rem;
  line-height: 1.45;
}
.checkout-review-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}
.checkout-order-review,
.checkout-contact-card {
  border: 1px solid rgba(214, 160, 90, .24);
  border-radius: 24px;
  background: rgba(255, 248, 235, .055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}
.checkout-order-review {
  position: sticky;
  top: 112px;
  padding: clamp(22px, 3vw, 32px);
}
.checkout-order-review h3,
.checkout-contact-card h3 {
  margin-bottom: 10px;
  color: #fff3df;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.08;
}
.checkout-review-list {
  display: grid;
  gap: 0;
  margin: 24px 0;
}
.checkout-review-list > div {
  display: grid;
  grid-template-columns: minmax(90px, .38fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(214, 160, 90, .16);
}
.checkout-review-list > div[hidden] { display: none; }
.checkout-review-list > div:last-child {
  border-bottom: 1px solid rgba(214, 160, 90, .16);
}
.checkout-review-list dt,
.checkout-review-list dd {
  margin: 0;
}
.checkout-review-list dt {
  color: rgba(242, 225, 204, .58);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.checkout-review-list dd {
  color: #fff3df;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.checkout-review-list > div:last-child dd {
  color: #e3b06f;
  font-size: 1.35rem;
}
.checkout-edit-button { margin-top: 2px; }
.checkout-contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}
.checkout-contact-card > div:first-child > p:last-child {
  margin: 0;
  color: rgba(242, 225, 204, .72);
}
.checkout-field {
  display: grid;
  gap: 8px;
  color: #fff3df;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 750;
}
.checkout-field > span small {
  color: rgba(242, 225, 204, .62);
  font-size: .88em;
  font-weight: 600;
}
.checkout-field input {
  width: 100%;
  border: 1px solid rgba(214, 160, 90, .35);
  border-radius: 14px;
  padding: 14px 15px;
  background: rgba(255, 250, 240, .09);
  color: #fffaf0;
  font: 500 1rem/1.3 ui-sans-serif, system-ui, sans-serif;
  outline: none;
}
.checkout-field input:focus {
  border-color: #d6a05a;
  box-shadow: 0 0 0 3px rgba(214, 160, 90, .16);
}
.checkout-confirmation {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(214, 160, 90, .18);
  border-radius: 14px;
  color: rgba(242, 225, 204, .82);
  background: rgba(0, 0, 0, .12);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .82rem;
  line-height: 1.45;
}
.checkout-confirmation input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #b97c35;
}
.checkout-payment-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkout-pay-button {
  position: relative;
  min-height: 70px;
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.checkout-pay-copy {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.checkout-pay-button[data-payment-provider="stripe"] .checkout-pay-copy {
  right: 0;
  left: 78px;
}
.checkout-pay-button[data-payment-provider="paypal"] .checkout-pay-copy {
  right: 66px;
  left: 0;
}
.checkout-pay-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 25px;
  padding: 0 8px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}
.checkout-payment-logo {
  position: absolute;
  top: 50%;
  display: block;
  width: auto;
  max-width: none;
  transform: translateY(-50%);
  pointer-events: none;
}
.checkout-payment-logo--stripe {
  left: 18px;
  height: 21px;
}
.checkout-payment-logo--paypal {
  right: 18px;
  height: 28px;
}
.checkout-pay-button small {
  font-size: .72rem;
  font-weight: 800;
  opacity: .75;
}
.checkout-pay-button:not(:disabled):hover { transform: translateY(-1px); }
.checkout-pay-button:not(:disabled):active { transform: translateY(0); }
.checkout-pay-button:disabled {
  cursor: wait;
  opacity: .62;
}
.checkout-paypal-button {
  border-radius: 999px;
  background: #ffc439;
  color: #111820;
  font: 800 .9rem/1.2 ui-sans-serif, system-ui, sans-serif;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
}
.checkout-paypal-button:hover { background: #ffcf5c; }
.checkout-status {
  min-height: 1.5em;
  margin: 0;
  color: rgba(242, 225, 204, .68);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .79rem;
  text-align: center;
}
.checkout-status[data-status-type="error"] { color: #ffbea9; }

/* Payment return pages */
.checkout-result-page {
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 100px) 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(177, 121, 55, .18), transparent 36%),
    #0c0908;
}
.checkout-result-card {
  max-width: 720px;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(214, 160, 90, .28);
  border-radius: 32px;
  background: rgba(255, 248, 235, .055);
  color: #f5e8d5;
  text-align: center;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .36);
}
.checkout-result-mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(214, 160, 90, .42);
  border-radius: 50%;
  color: #e0a85f;
  font-size: 1.5rem;
}
.checkout-result-card h1 {
  margin: 0 auto 18px;
  font-size: clamp(2.35rem, 7vw, 4.7rem);
  line-height: .98;
}
.checkout-result-card > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(245, 232, 213, .76);
}
.checkout-result-reference {
  display: grid;
  gap: 3px;
  max-width: 460px;
  margin: 0 auto 30px;
  padding: 18px;
  border: 1px solid rgba(214, 160, 90, .2);
  border-radius: 16px;
  background: rgba(0, 0, 0, .18);
}
.checkout-result-reference span,
.checkout-result-reference small {
  color: rgba(245, 232, 213, .58);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .75rem;
}
.checkout-result-reference strong {
  color: #e6b171;
  font-size: 1.35rem;
  letter-spacing: .03em;
}
.checkout-result-card .button { margin: 5px; }

@media (max-width: 820px) {
  .checkout-review-layout { grid-template-columns: 1fr; }
  .checkout-order-review { position: static; }
}

@media (max-width: 700px) {
  .config-details-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .config-details-actions small { max-width: none; }
  .checkout-payment-actions { grid-template-columns: 1fr; }
  .checkout-review-list > div { grid-template-columns: 1fr; gap: 5px; }
  .checkout-result-card { width: min(calc(100% - 28px), 720px); }
}

/* The final FAQ group does not need another full section-sized tail beneath it. */
.faq-page .faq-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.faq-page .faq-page-section {
  padding-bottom: clamp(52px, 4vw, 68px);
}


@media (min-width: 821px) {
  .product-example-grid--pair {
    align-items: stretch;
  }

  .product-example-grid--pair .product-example-card {
    height: auto;
    align-self: stretch;
    grid-template-rows: clamp(280px, 28vw, 360px) 72px;
  }

  .product-example-grid--pair .product-example-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
    align-self: stretch;
    justify-self: stretch;
    background: #080604;
  }

  .product-example-grid--pair .product-example-card > span {
    height: 72px;
    min-height: 72px;
    box-sizing: border-box;
    align-items: center;
  }
}
