/* ============ TOKENS ============ */
:root {
  --ink: #07060a;
  --ink-2: #110d0a;
  --ink-3: #1a140e;
  --sepia: #241a10;
  --sepia-2: #2e2214;
  --parchment: #d9c7a0;
  --parchment-2: #c4ad80;
  --parchment-dark: #8a7449;
  --ink-on-parchment: #2a1a0c;
  --gold: #c9a24a;
  --gold-bright: #e7c875;
  --gold-dim: #8b7339;
  --gold-deep: #5a4620;
  /* Blue accent palette — twilight-realm inspired */
  --twilight: #6a8fa3;
  --twilight-glow: #9ec3d6;
  --twilight-bright: #7fc4e6;
  --twilight-deep: #2e4a5f;
  --twilight-ink: #152230;
  --twilight-mid: #3d6378;
  --blood: #6a1b1b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--ink);
  color: var(--parchment);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background-color 0.7s ease, color 0.7s ease;
}

/* ============ ATMOSPHERE ============ */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.atmosphere::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(127, 196, 230, 0.1), transparent 70%),
    radial-gradient(ellipse 60% 40% at 15% 90%, rgba(201, 162, 74, 0.06), transparent 70%),
    radial-gradient(ellipse 70% 50% at 90% 40%, rgba(61, 99, 120, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 30% at 10% 30%, rgba(46, 74, 95, 0.15), transparent 65%);
}
.atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(127, 196, 230, 0.015) 0, rgba(127, 196, 230, 0.015) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.8'/></svg>");
  animation: grain 8s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-5%, -3%); }
  40% { transform: translate(3%, -6%); }
  60% { transform: translate(-2%, 4%); }
  80% { transform: translate(4%, 2%); }
}

/* Cursor-following glow — gold core with blue halo */
.cursor-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 4;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at center,
      rgba(231, 200, 117, 0.09) 0%,
      rgba(201, 162, 74, 0.06) 15%,
      rgba(127, 196, 230, 0.05) 35%,
      rgba(61, 99, 120, 0.03) 55%,
      transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.8s ease;
  left: 50%;
  top: 50%;
}
.cursor-glow.active { opacity: 1; }

.embers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.ember {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold), 0 0 12px rgba(231, 200, 117, 0.4);
  opacity: 0;
  animation: rise linear infinite;
}
.ember.blue {
  background: var(--twilight-glow);
  box-shadow: 0 0 8px var(--twilight-bright), 0 0 16px rgba(127, 196, 230, 0.5);
}
@keyframes rise {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-10vh) translateX(var(--drift, 40px)); opacity: 0; }
}

/* Dust motes — the bright-mode counterpart to embers.
   Soft, slow, drifting in random directions like sunlit dust in a study. */
.mote {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(231, 200, 117, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(231, 200, 117, 0.55), 0 0 14px rgba(231, 200, 117, 0.25);
  opacity: 0;
  animation: drift linear infinite;
  filter: blur(0.4px);
}
.mote.cool {
  background: rgba(127, 196, 230, 0.7);
  box-shadow: 0 0 6px rgba(127, 196, 230, 0.5), 0 0 14px rgba(127, 196, 230, 0.2);
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.8; }
  50%  { transform: translate(var(--mote-x, 60px), -40vh) scale(1); opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translate(calc(var(--mote-x, 60px) * 1.6), -90vh) scale(0.7); opacity: 0; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal.reveal-delay-1 { transition-delay: 0.15s; }
.reveal.reveal-delay-2 { transition-delay: 0.3s; }
.reveal.reveal-delay-3 { transition-delay: 0.45s; }

/* A quick blue flash accent on reveal */
.reveal-glow {
  position: relative;
}
.reveal-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, transparent, rgba(127, 196, 230, 0.25), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.reveal-glow.revealed::before {
  animation: blueFlash 1.4s ease-out;
}
@keyframes blueFlash {
  0% { opacity: 0; transform: translateX(-20px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateX(20px); }
}


/* ============ NAV ============ */
nav.main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(7, 6, 10, 0.92) 0%, rgba(7, 6, 10, 0.7) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 74, 0.15);
}
nav.main .crest {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
  color: var(--twilight-bright);
}
nav.main .crest svg {
  width: 38px; height: 38px;
  filter: drop-shadow(0 0 8px rgba(127, 196, 230, 0.4));
  transition: transform 0.6s ease, filter 0.6s ease;
}
nav.main .crest:hover svg {
  transform: rotate(180deg);
  filter: drop-shadow(0 0 14px rgba(127, 196, 230, 0.7));
}
nav.main .crest span {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(201, 162, 74, 0.25);
}
nav.main ul {
  list-style: none;
  display: flex;
  gap: 2.8rem;
}
nav.main ul a {
  font-family: 'Cinzel Decorative', serif;
  color: var(--parchment);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
nav.main ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--twilight-glow) 30%, var(--gold) 50%, var(--twilight-glow) 70%, transparent);
  transition: width 0.5s ease, left 0.5s ease;
}
nav.main ul a:hover, nav.main ul a.active {
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(231, 200, 117, 0.5), 0 0 24px rgba(127, 196, 230, 0.25);
}
nav.main ul a:hover::after, nav.main ul a.active::after {
  width: 100%;
  left: 0;
}

/* ============ THEME TOGGLE ============ */
/* Fixed to the bottom-left corner of the viewport on all screen sizes.
   Sun icon visible in bright mode, moon icon in dark mode — they cross-fade. */
.theme-toggle {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(7, 6, 10, 0.75);
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.4s ease, color 0.4s ease, transform 0.4s ease,
              box-shadow 0.4s ease, background 0.4s ease;
  -webkit-tap-highlight-color: transparent;
  /* Ensure it's easily tappable on mobile (min 44×44 already satisfied) */
  touch-action: manipulation;
}
.theme-toggle:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: rotate(20deg);
  box-shadow: 0 0 16px rgba(201, 162, 74, 0.3), 0 0 28px rgba(127, 196, 230, 0.15);
}
.theme-toggle:focus-visible {
  outline: 1px dashed var(--twilight-glow);
  outline-offset: 3px;
}
.theme-icon {
  position: absolute;
  width: 22px;
  height: 22px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Default (bright mode): show sun, hide moon */
.theme-icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.theme-icon-moon {
  opacity: 0;
  transform: scale(0.6) rotate(-60deg);
}
/* Dark mode: show moon, hide sun */
[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: scale(0.6) rotate(60deg);
}
[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* On mobile the sticky CTA sits bottom-right so there's no conflict.
   Slightly reduce size for very small screens for a tidier feel. */
@media (max-width: 480px) {
  .theme-toggle {
    width: 40px;
    height: 40px;
    bottom: 1rem;
    left: 1rem;
  }
  .theme-icon { width: 19px; height: 19px; }
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 45;
  padding: 0.85rem 1.4rem;
  background: linear-gradient(180deg, rgba(46, 74, 95, 0.95), rgba(21, 34, 48, 0.95));
  color: var(--gold-bright);
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 2px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.5),
    0 0 16px rgba(201, 162, 74, 0.2);
  backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  -webkit-tap-highlight-color: transparent;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 721px) {
  .sticky-cta { display: none !important; }
}

/* ============ MOBILE NAV (HAMBURGER + OVERLAY) ============ */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(201, 162, 74, 0.3);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 2px;
  transition: border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(7, 6, 10, 0.98), rgba(17, 13, 10, 0.98));
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  padding: 4rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0;
}
.mobile-menu-list a {
  display: block;
  padding: 1rem 2rem;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--parchment);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-list a:hover,
.mobile-menu-list a:focus { color: var(--gold-bright); }
.mobile-menu-cta {
  margin-top: 1.4rem;
}

@media (max-width: 720px) {
  nav.main { padding: 1rem 1.4rem; }
  nav.main .crest svg { width: 32px; height: 32px; }
  nav.main .crest span { font-size: 0.78rem; letter-spacing: 0.16em; }
  nav.main ul { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ PAGE SHELL ============ */
.page {
  display: none;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding-top: 7rem;
}
.page.active { display: block; animation: pageFadeIn 0.9s ease both; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SLOT STATUS BANNER ============ */
.slot-status {
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 0.75rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border: 1px solid var(--gold-dim);
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.06), rgba(201, 162, 74, 0.02));
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment);
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: 0 0 24px rgba(201, 162, 74, 0.06);
  position: relative;
}
.slot-status .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6fcf76;
  box-shadow: 0 0 8px rgba(111, 207, 118, 0.7), 0 0 16px rgba(111, 207, 118, 0.35);
  flex-shrink: 0;
  animation: slotPulse 2.4s ease-in-out infinite;
}
.slot-status.closed .dot {
  background: #b85c5c;
  box-shadow: 0 0 8px rgba(184, 92, 92, 0.7), 0 0 16px rgba(184, 92, 92, 0.35);
}
@keyframes slotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.slot-status .status-label {
  color: var(--gold);
  font-style: normal;
  font-family: 'Cinzel Decorative', serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  padding-right: 0.6rem;
  border-right: 1px solid rgba(201, 162, 74, 0.3);
  margin-right: 0.2rem;
}

/* ============ NO-AI LINE ============ */
.no-ai {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  text-align: center;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--parchment);
  opacity: 0.92;
}
.no-ai::before {
  content: '✦';
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  opacity: 0.7;
  letter-spacing: 0.4em;
}

@media (max-width: 720px) {
  .slot-status {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.85rem 1.2rem;
    font-size: 0.9rem;
  }
  .slot-status .status-label {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

/* ============ HOME PAGE ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}
.hero .eyebrow {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--twilight-bright);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 2rem;
  opacity: 0;
  text-shadow: 0 0 20px rgba(127, 196, 230, 0.4);
  animation: fadeUp 1.2s 0.3s ease forwards;
}
.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  letter-spacing: 0.08em;
  line-height: 1.05;
  color: var(--gold);
  text-shadow:
    0 0 40px rgba(201, 162, 74, 0.25),
    0 0 80px rgba(127, 196, 230, 0.15),
    0 2px 1px rgba(0,0,0,0.9);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.4s 0.5s ease forwards;
  position: relative;
}
.hero h1::before {
  content: '';
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse at center, rgba(61, 99, 120, 0.25), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.hero h1 .dim {
  color: var(--parchment);
  font-weight: 400;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.hero .ornament {
  margin: 1.5rem 0;
  opacity: 0;
  animation: fadeUp 1.4s 0.9s ease forwards;
}
.hero .ornament svg {
  width: min(380px, 60vw);
  height: auto;
}
.hero .subtitle {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--parchment);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1.4s 1.1s ease forwards;
}
.hero .cta-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.4s 1.3s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.08), rgba(201, 162, 74, 0.02));
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}
.btn::before, .btn::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--gold);
  transition: all 0.4s ease;
}
.btn::before { top: -4px; left: -4px; border-right: none; border-bottom: none; }
.btn::after { bottom: -4px; right: -4px; border-left: none; border-top: none; }
.btn:hover {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 28px rgba(231, 200, 117, 0.35);
}
.btn:hover::before, .btn:hover::after {
  width: 20px; height: 20px;
  border-color: var(--gold-bright);
}
.btn.ghost {
  color: var(--parchment);
  border-color: rgba(217, 199, 160, 0.3);
}
.btn.ghost::before, .btn.ghost::after { border-color: var(--parchment); }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-dim);
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1.4s 1.6s ease forwards, pulse 2.4s 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ============ ABOUT SECTION ============ */
.about {
  padding: 8rem 2rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 24px rgba(201, 162, 74, 0.2);
}
.section-subtitle {
  text-align: center;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--twilight-glow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 4rem;
  opacity: 0.8;
}
.divider {
  display: flex;
  justify-content: center;
  margin: 1rem auto 4rem;
}
.divider svg { width: 240px; height: auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 50% 25%, rgba(127, 196, 230, 0.35), transparent 55%),
    radial-gradient(ellipse at 50% 85%, rgba(46, 74, 95, 0.4), transparent 60%),
    linear-gradient(135deg, var(--twilight-ink) 0%, var(--ink-2) 100%);
  border: 1px solid var(--gold-dim);
  padding: 0;
  overflow: hidden;
}
.about-portrait::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 74, 0.3);
  pointer-events: none;
  z-index: 2;
}
.about-portrait .frame-corner {
  position: absolute;
  width: 40px; height: 40px;
  z-index: 3;
  fill: var(--gold);
}
.about-portrait .tl { top: 0; left: 0; }
.about-portrait .tr { top: 0; right: 0; transform: scaleX(-1); }
.about-portrait .bl { bottom: 0; left: 0; transform: scaleY(-1); }
.about-portrait .br { bottom: 0; right: 0; transform: scale(-1,-1); }
.about-portrait .silhouette {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-portrait .silhouette svg {
  width: 70%;
  height: auto;
  opacity: 0.85;
}
.about-portrait .portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.8s ease, filter 0.8s ease;
}
.about-portrait:hover .portrait-img {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.05);
}
.about-portrait .sigil-text {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  text-transform: uppercase;
  z-index: 3;
}

.about-text h3 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.about-text p {
  color: var(--parchment);
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
  line-height: 1.8;
}
.about-text .drop-cap::first-letter {
  font-family: 'Cinzel Decorative', serif;
  font-size: 4.2rem;
  float: left;
  line-height: 0.85;
  padding: 0.3rem 0.8rem 0 0;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201, 162, 74, 0.3);
}
.about-text .meta {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--twilight-glow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-top: 2rem;
}

/* ============ CRAFT / COMMISSIONS PANEL ============ */
.craft {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.craft-card {
  background: linear-gradient(180deg, rgba(36, 26, 16, 0.6) 0%, rgba(17, 13, 10, 0.4) 100%);
  border: 1px solid rgba(201, 162, 74, 0.2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.5s ease;
}
.craft-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.craft-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 40px rgba(201, 162, 74, 0.1);
}
.craft-card:hover::before { opacity: 1; }
.craft-card .numeral {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.5rem;
  color: var(--gold-deep);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.craft-card h4 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.craft-card p {
  font-family: 'Cormorant Garamond', serif;
  color: var(--parchment);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============ FEATURED ART ============ */
.featured {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.featured-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gold-deep);
  transition: all 0.5s ease;
}
.featured-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 40px rgba(127, 196, 230, 0.18);
}
.featured-card .art-canvas {
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
}
.featured-card:hover .art-canvas {
  transform: scale(1.06);
}
.featured-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 6, 10, 0.95) 0%, rgba(7, 6, 10, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
}
.featured-card .tag {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--twilight-glow);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.featured-card h4 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.featured-card .excerpt {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--parchment);
  opacity: 0.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin 0.5s ease;
}
.featured-card:hover .excerpt {
  max-height: 100px;
  margin-top: 0.4rem;
}

/* ============ TOME PAGE ============ */
.tome-page {
  padding: 7rem 1.5rem 4rem;
}
.tome-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.tag-filter {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.tag-filter button {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.65rem 1.3rem;
  color: var(--parchment);
  background: transparent;
  border: 1px solid rgba(201, 162, 74, 0.25);
  cursor: pointer;
  transition: all 0.35s ease;
}
.tag-filter button:hover {
  color: var(--twilight-bright);
  border-color: var(--twilight);
  background: rgba(46, 74, 95, 0.2);
  box-shadow: 0 0 12px rgba(127, 196, 230, 0.2);
}
.tag-filter button.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(201, 162, 74, 0.4), 0 0 30px rgba(127, 196, 230, 0.15);
}

/* book */
.book-stage {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  perspective: 2600px;
  perspective-origin: 50% 50%;
}
.book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(90deg, rgba(42, 26, 12, 0.6) 0%, rgba(21, 34, 48, 0.7) 49%, #000 50%, rgba(21, 34, 48, 0.7) 51%, rgba(42, 26, 12, 0.6) 100%);
  border: 1px solid var(--gold-dim);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(201, 162, 74, 0.08),
    0 0 100px rgba(46, 74, 95, 0.15),
    inset 0 0 120px rgba(0,0,0,0.6);
  position: relative;
  min-height: 680px;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(.55, .055, .675, .19), box-shadow 0.45s ease;
  transform-origin: 50% 50%;
  will-change: transform;
}
.book.flip-out-right {
  transform: rotateY(-90deg) scale(0.92);
  transition-timing-function: cubic-bezier(.55, .055, .675, .19);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 80px rgba(127, 196, 230, 0.25),
    inset 0 0 120px rgba(0,0,0,0.6);
}
.book.flip-out-left {
  transform: rotateY(90deg) scale(0.92);
  transition-timing-function: cubic-bezier(.55, .055, .675, .19);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 80px rgba(127, 196, 230, 0.25),
    inset 0 0 120px rgba(0,0,0,0.6);
}
.book.flip-in-from-left {
  transform: rotateY(90deg) scale(0.92);
  transition: none;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 80px rgba(127, 196, 230, 0.25),
    inset 0 0 120px rgba(0,0,0,0.6);
}
.book.flip-in-from-right {
  transform: rotateY(-90deg) scale(0.92);
  transition: none;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 80px rgba(127, 196, 230, 0.25),
    inset 0 0 120px rgba(0,0,0,0.6);
}
.book.flip-settle {
  transition: transform 0.45s cubic-bezier(.165, .84, .44, 1), box-shadow 0.6s ease;
  transform: rotateY(0) scale(1);
}

/* blue energy pulse during flip */
.book-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(127, 196, 230, 0.2), transparent 60%);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  transition: opacity 0.3s ease;
}
.book-stage.flipping::before {
  opacity: 1;
}
.book::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 40px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.85) 45%, rgba(21, 34, 48, 0.95) 50%, rgba(0,0,0,0.85) 55%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}
.page-left, .page-right {
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(217, 199, 160, 0.04), transparent 70%),
    linear-gradient(180deg, rgba(42, 26, 12, 0.3), rgba(17, 13, 10, 0.3));
}
.page-left {
  border-right: 1px solid rgba(201, 162, 74, 0.15);
}
.page-right {
  border-left: 1px solid rgba(201, 162, 74, 0.15);
}
.page-ornament {
  position: absolute;
  width: 60px; height: 60px;
  fill: var(--gold-dim);
  opacity: 0.7;
}
.page-ornament.p-tl { top: 1rem; left: 1rem; }
.page-ornament.p-tr { top: 1rem; right: 1rem; transform: scaleX(-1); }
.page-ornament.p-bl { bottom: 1rem; left: 1rem; transform: scaleY(-1); }
.page-ornament.p-br { bottom: 1rem; right: 1rem; transform: scale(-1,-1); }

.art-frame {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 540px;
  margin: 0 auto;
  background: var(--ink);
  border: 1px solid var(--gold-dim);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
}
.art-frame::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 162, 74, 0.25);
  pointer-events: none;
}
.art-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.art-frame .art-canvas {
  position: absolute;
  inset: 0;
}
.art-caption {
  text-align: center;
  margin-top: 1.2rem;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--twilight-glow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.story {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.story::-webkit-scrollbar { width: 6px; }
.story::-webkit-scrollbar-track { background: transparent; }
.story::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 3px; }

.story .tag-mark {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--twilight-glow);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 0.8rem;
}
.story h2 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 0 18px rgba(201, 162, 74, 0.15);
}
.story .byline {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment-dark);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 162, 74, 0.2);
  position: relative;
}
.story .byline::after {
  content: '✦';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background: var(--ink);
  padding: 0 10px;
  color: var(--gold);
}
.story-body {
  font-family: 'IM Fell English', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--parchment);
}
.story-body p { margin-bottom: 1.3rem; text-align: justify; hyphens: auto; }
.story-body p:first-of-type::first-letter {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.4rem;
  float: left;
  line-height: 0.8;
  padding: 0.3rem 0.7rem 0 0;
  color: var(--gold);
  font-weight: 700;
}

.story-cta {
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 74, 0.18);
}
.story-cta-divider {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  margin-bottom: 0.9rem;
  opacity: 0.7;
}
.story-cta-text {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment-dark);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}
.story-cta-btn {
  font-size: 0.75rem;
  padding: 0.7rem 1.4rem;
}

.book-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}
.book-nav .page-count {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}
.book-nav button {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.book-nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.book-nav button:hover:not(:disabled) {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 20px rgba(231, 200, 117, 0.3), 0 0 36px rgba(127, 196, 230, 0.15);
}

/* ============ CONTACT PAGE ============ */
.contact-page {
  padding: 7rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact-intro {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--parchment);
  max-width: 620px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}
.socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.social-card.social-wide {
  grid-column: 1 / -1;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.8rem 2rem;
  background: linear-gradient(180deg, rgba(36, 26, 16, 0.55), rgba(17, 13, 10, 0.35));
  border: 1px solid rgba(201, 162, 74, 0.2);
  text-decoration: none;
  color: var(--parchment);
  transition: all 0.4s ease;
  position: relative;
  text-align: left;
}
.social-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.5), 0 0 28px rgba(127, 196, 230, 0.2);
}
.social-card .icon-box {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.social-card:hover .icon-box {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 18px rgba(201, 162, 74, 0.4);
}
.social-card .label {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.social-card .handle {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment);
  font-size: 0.95rem;
}

.closing-mark {
  margin-top: 4rem;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment-dark);
  letter-spacing: 0.15em;
}
.closing-mark svg {
  display: block;
  margin: 0 auto 1.5rem;
  width: 120px;
}

/* ============ FOOTER ============ */
footer {
  position: relative;
  z-index: 10;
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201, 162, 74, 0.15);
  background: linear-gradient(to top, rgba(17, 13, 10, 0.9), transparent);
}
footer p {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment-dark);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ============ PROCESS ============ */
.process {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.process-step {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, rgba(21, 34, 48, 0.4) 0%, rgba(17, 13, 10, 0.3) 100%);
  border: 1px solid rgba(127, 196, 230, 0.18);
  transition: all 0.5s ease;
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--twilight-glow), transparent);
  opacity: 0.4;
}
.process-step:hover {
  border-color: var(--twilight);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.55), 0 0 30px rgba(127, 196, 230, 0.15);
}
.process-step .step-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.6rem;
  color: var(--twilight-deep);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 18px rgba(127, 196, 230, 0.15);
}
.process-step h4 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}
.process-step p {
  font-family: 'Cormorant Garamond', serif;
  color: var(--parchment);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(180deg, rgba(36, 26, 16, 0.55), rgba(17, 13, 10, 0.35));
  border: 1px solid rgba(201, 162, 74, 0.2);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.2rem;
  left: 1rem;
  font-family: 'Cinzel Decorative', serif;
  font-size: 4rem;
  color: var(--gold-deep);
  line-height: 1;
}
.testimonial-quote {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(201, 162, 74, 0.15);
  padding-top: 1rem;
}
.testimonial-name {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.testimonial-handle {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--twilight-glow);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* ============ COMMISSION FORM ============ */
.commission-form-section {
  padding: 6rem 2rem 4rem;
  max-width: 920px;
  margin: 0 auto;
}
.form-intro {
  text-align: center;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--parchment);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  opacity: 0.92;
}
.commission-form {
  background: linear-gradient(180deg, rgba(21, 34, 48, 0.45) 0%, rgba(17, 13, 10, 0.35) 100%);
  border: 1px solid var(--gold-dim);
  padding: 3rem 2.6rem;
  position: relative;
  overflow: hidden;
}
.commission-form::before, .commission-form::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.commission-form::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.commission-form::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.6rem;
}
.form-field.full { grid-column: 1 / -1; }

.form-label {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.form-label .req {
  color: var(--twilight-bright);
  font-size: 0.7rem;
}
.form-label .optional {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment-dark);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: none;
}

.commission-form input[type="text"],
.commission-form input[type="email"],
.commission-form select,
.commission-form textarea {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--parchment);
  background: rgba(7, 6, 10, 0.55);
  border: 1px solid rgba(201, 162, 74, 0.25);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
}
.commission-form input[type="text"]:focus,
.commission-form input[type="email"]:focus,
.commission-form select:focus,
.commission-form textarea:focus {
  border-color: var(--gold);
  background: rgba(7, 6, 10, 0.75);
  box-shadow: 0 0 18px rgba(201, 162, 74, 0.18), inset 0 0 12px rgba(127, 196, 230, 0.06);
}
.commission-form input::placeholder,
.commission-form textarea::placeholder {
  color: var(--parchment-dark);
  font-style: italic;
  opacity: 0.7;
}
.commission-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.commission-form select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}
.commission-form select option {
  background: var(--ink-2);
  color: var(--parchment);
}

/* Tier picker — radio cards */
.tier-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.tier-option {
  position: relative;
  cursor: pointer;
}
.tier-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tier-option .tier-card {
  border: 1px solid rgba(201, 162, 74, 0.25);
  background: rgba(7, 6, 10, 0.45);
  padding: 1rem 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.tier-option:hover .tier-card {
  border-color: var(--gold-dim);
  background: rgba(7, 6, 10, 0.65);
}
.tier-option input:checked + .tier-card {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.12), rgba(201, 162, 74, 0.04));
  box-shadow: 0 0 18px rgba(201, 162, 74, 0.22), inset 0 0 12px rgba(127, 196, 230, 0.08);
}
.tier-option input:focus-visible + .tier-card {
  outline: 1px dashed var(--twilight-glow);
  outline-offset: 3px;
}
.tier-card .tier-name {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.tier-card .tier-price {
  font-family: 'Cormorant Garamond', serif;
  color: var(--parchment);
  font-size: 1.05rem;
  font-weight: 500;
}

/* Add-on chips — multi-select */
.addon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.addon-chip {
  cursor: pointer;
  user-select: none;
}
.addon-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.addon-chip .chip-body {
  display: inline-block;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(201, 162, 74, 0.25);
  background: rgba(7, 6, 10, 0.45);
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment);
  font-size: 0.92rem;
  transition: all 0.3s ease;
}
.addon-chip:hover .chip-body {
  border-color: var(--gold-dim);
  color: var(--gold-bright);
}
.addon-chip input:checked + .chip-body {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.14), rgba(201, 162, 74, 0.04));
  color: var(--gold-bright);
  box-shadow: 0 0 14px rgba(201, 162, 74, 0.18);
}
.addon-chip input:focus-visible + .chip-body {
  outline: 1px dashed var(--twilight-glow);
  outline-offset: 3px;
}

.form-helper {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment-dark);
  font-size: 0.85rem;
  margin-top: 0.4rem;
  line-height: 1.5;
}

.form-submit-row {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form-submit-row .btn {
  border: none;
  cursor: pointer;
}
.form-submit-row .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-fineprint {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment-dark);
  font-size: 0.85rem;
  text-align: center;
  max-width: 520px;
  line-height: 1.6;
}
.form-status {
  margin-top: 1.2rem;
  text-align: center;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--twilight-bright);
  min-height: 1.3em;
}
.form-status.error { color: #d99898; }
.form-status.success { color: #8fcf90; }

/* Collapsible "More details (optional)" */
.form-more {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(201, 162, 74, 0.18);
  padding-top: 1.2rem;
}
.form-more > summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--twilight-glow);
  padding: 0.4rem 0;
  user-select: none;
  transition: color 0.2s ease;
}
.form-more > summary::-webkit-details-marker { display: none; }
.form-more > summary::before {
  content: '＋ ';
  color: var(--gold);
  margin-right: 0.4rem;
  transition: transform 0.2s ease;
  display: inline-block;
}
.form-more[open] > summary::before { content: '－ '; }
.form-more > summary:hover { color: var(--twilight-bright); }
.form-more > summary .optional {
  color: var(--parchment-dark);
  font-family: 'IM Fell English', serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.5rem;
  font-size: 0.95em;
}
.form-more[open] > .form-field,
.form-more[open] > .form-row {
  margin-top: 1.1rem;
}

@media (max-width: 720px) {
  .commission-form { padding: 2rem 1.3rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .tier-picker { grid-template-columns: repeat(2, 1fr); }
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 7rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}
.final-cta-inner {
  position: relative;
  text-align: center;
  padding: 4.5rem 3rem;
  background: linear-gradient(180deg, rgba(21, 34, 48, 0.5) 0%, rgba(17, 13, 10, 0.4) 100%);
  border: 1px solid var(--gold-dim);
  overflow: hidden;
}
.final-cta-inner::before, .final-cta-inner::after {
  content: '';
  position: absolute;
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
}
.final-cta-inner::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.final-cta-inner::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(127, 196, 230, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.final-cta h2 {
  position: relative;
  z-index: 1;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 24px rgba(201, 162, 74, 0.2), 0 0 40px rgba(127, 196, 230, 0.15);
}
.final-cta p {
  position: relative;
  z-index: 1;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--parchment);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.final-cta .cta-row { position: relative; z-index: 1; }
.cta-email {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment-dark);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.cta-email a {
  color: var(--twilight-bright);
  text-decoration: none;
  border-bottom: 1px dotted var(--twilight-mid);
  transition: all 0.3s ease;
}
.cta-email a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(231, 200, 117, 0.4);
}


.gallery-page {
  padding: 7rem 1.5rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid {
  column-count: 3;
  column-gap: 1.5rem;
  margin-top: 1.5rem;
}
.gallery-empty {
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment-dark);
}
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gold-deep);
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  display: block;
  background: var(--ink-2);
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 162, 74, 0.12);
  pointer-events: none;
  z-index: 3;
  transition: border-color 0.5s ease;
}
.gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.55), 0 0 30px rgba(127, 196, 230, 0.2);
}
.gallery-item:hover::before {
  border-color: rgba(201, 162, 74, 0.4);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item .g-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.3rem 1.1rem;
  background: linear-gradient(to top, rgba(7,6,10,0.95) 0%, rgba(7,6,10,0.5) 70%, transparent 100%);
  transform: translateY(25%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-item:hover .g-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item .g-tag {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--twilight-glow);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
  }
  .gallery-item .g-title {
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  }

  /* ============ LIGHTBOX ============ */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(7, 6, 10, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .lightbox.active {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox-inner {
    max-width: 1100px;
    max-height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    transform: scale(0.94) translateY(10px);
    transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
  }
  .lightbox.active .lightbox-inner {
    transform: scale(1) translateY(0);
  }
  .lightbox-image-wrap {
    position: relative;
    border: 1px solid var(--gold-dim);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 60px rgba(127, 196, 230, 0.12);
    background: var(--ink);
  }
  .lightbox-image-wrap::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(201, 162, 74, 0.2);
    pointer-events: none;
    z-index: 2;
  }
  .lightbox img {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    object-fit: contain;
  }
  .lightbox-meta {
    text-align: center;
    color: var(--parchment);
    max-width: 700px;
  }
  .lightbox-tag {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--twilight-glow);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
  }
  .lightbox h3 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 18px rgba(201, 162, 74, 0.15);
  }
  .lightbox-journal {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold-dim);
    cursor: pointer;
    transition: all 0.4s ease;
    display: none;
  }
  .lightbox-journal.has-story { display: inline-block; }
  .lightbox-journal:hover {
    color: var(--gold-bright);
    border-color: var(--gold-bright);
    box-shadow: 0 0 20px rgba(231, 200, 117, 0.3), 0 0 36px rgba(127, 196, 230, 0.15);
  }
  .lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.6rem;
    color: var(--gold);
    background: rgba(17, 13, 10, 0.7);
    border: 1px solid var(--gold-dim);
    width: 44px;
    height: 44px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel Decorative', serif;
  }
  .lightbox-close:hover {
    color: var(--gold-bright);
    border-color: var(--gold-bright);
    transform: rotate(90deg);
    box-shadow: 0 0 18px rgba(231, 200, 117, 0.3);
  }

  @media (max-width: 960px) {
    nav.main { padding: 1rem 1.5rem; }
    nav.main ul { gap: 1.1rem; }
    nav.main ul a { font-size: 0.68rem; letter-spacing: 0.14em; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .craft-grid, .featured-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .final-cta { padding: 4rem 1rem; }
    .final-cta-inner { padding: 3rem 1.5rem; }
    .book { grid-template-columns: 1fr; min-height: auto; }
    .page-left, .page-right { padding: 2.5rem 1.5rem; }
    .book::before { display: none; }
    .page-left { border-right: none; border-bottom: 1px solid rgba(201, 162, 74, 0.2); }
    .page-right { border-left: none; }
    .socials { grid-template-columns: 1fr; }
    .social-card.social-wide { grid-column: auto; }
    nav.main .crest span { display: none; }
    .gallery-grid { column-count: 2; column-gap: 1rem; }
    .gallery-item { margin-bottom: 1rem; }
  }
  @media (max-width: 560px) {
    .gallery-grid { column-count: 1; }
    .lightbox-close { top: 1rem; right: 1rem; }
  }
  
  /* ============ PRICING TIERS ============ */
  .pricing {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  .pricing-card {
    background: linear-gradient(180deg, rgba(36, 26, 16, 0.6) 0%, rgba(17, 13, 10, 0.4) 100%);
    border: 1px solid rgba(201, 162, 74, 0.2);
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
  }
  .pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 40px rgba(201, 162, 74, 0.1);
  }
  .pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(50, 36, 18, 0.7) 0%, rgba(20, 14, 10, 0.55) 100%);
    box-shadow: 0 0 40px rgba(201, 162, 74, 0.15);
  }
  .pricing-card .pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    font-weight: 700;
    box-shadow: 0 0 16px rgba(231, 200, 117, 0.4);
  }
  .pricing-card h4 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    text-align: center;
  }
  .pricing-card .price {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.6rem;
    color: var(--gold-bright);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.4rem;
    text-shadow: 0 0 18px rgba(231, 200, 117, 0.25);
  }
  .pricing-card .price .currency {
    font-size: 1.4rem;
    vertical-align: top;
    margin-right: 2px;
    color: var(--gold);
  }
  .pricing-card .price-note {
    text-align: center;
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--twilight-glow);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    opacity: 0.8;
  }
  .pricing-card .tier-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 162, 74, 0.4), transparent);
    margin: 0 auto 1.4rem;
    width: 80%;
  }
  .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
  }
  .pricing-card ul li {
    color: var(--parchment);
    font-size: 1rem;
    line-height: 1.55;
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
  }
  .pricing-card ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-dim);
    font-size: 0.8rem;
    top: 0.55rem;
  }

  .pricing-aux {
    margin-top: 3rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    color: var(--parchment);
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .pricing-aux strong {
    color: var(--gold);
    font-weight: 600;
  }
  .addons-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 1.6rem auto 0;
    max-width: 900px;
  }
  .addon-pill {
    border: 1px solid rgba(201, 162, 74, 0.3);
    padding: 0.4rem 0.95rem;
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--parchment);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    background: rgba(201, 162, 74, 0.04);
  }
  .addon-pill .plus {
    color: var(--gold-bright);
    font-weight: 600;
    font-style: normal;
    margin-right: 0.35rem;
    font-family: 'Cormorant Garamond', serif;
  }

  /* ============ FAQ ============ */
  .faq {
    padding: 6rem 2rem;
    max-width: 880px;
    margin: 0 auto;
  }
  .faq-list {
    margin-top: 3rem;
    border-top: 1px solid rgba(201, 162, 74, 0.15);
  }
  .faq-item {
    border-bottom: 1px solid rgba(201, 162, 74, 0.15);
  }
  .faq-item > summary {
    list-style: none;
    cursor: pointer;
    padding: 1.4rem 2.2rem 1.4rem 0;
    position: relative;
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold);
    font-size: 1.02rem;
    letter-spacing: 0.06em;
    line-height: 1.4;
    transition: color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .faq-item > summary::-webkit-details-marker { display: none; }
  .faq-item > summary::after {
    content: '';
    position: absolute;
    right: 0.4rem;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .faq-item[open] > summary::after {
    transform: translateY(-30%) rotate(-135deg);
  }
  .faq-item > summary:hover,
  .faq-item[open] > summary {
    color: var(--gold-bright);
  }
  .faq-item > summary:hover::after,
  .faq-item[open] > summary::after {
    border-color: var(--gold-bright);
  }
  .faq-item > p {
    font-family: 'Cormorant Garamond', serif;
    color: var(--parchment);
    font-size: 1.05rem;
    line-height: 1.75;
    padding: 0 0 1.6rem 0;
    animation: faqOpen 0.35s ease-out;
  }
  .faq-item > p + p { margin-top: 0.6rem; }
  @keyframes faqOpen {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ============ TWITCH LIVE LINK ============ */
  .twitch-live {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.4rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(127, 196, 230, 0.35);
    background: rgba(46, 74, 95, 0.18);
    color: var(--twilight-bright);
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.4s ease;
  }
  .twitch-live:hover {
    border-color: var(--twilight-bright);
    background: rgba(46, 74, 95, 0.35);
    box-shadow: 0 0 18px rgba(127, 196, 230, 0.25);
    color: #fff;
  }
  .twitch-live .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b85c5c;
    box-shadow: 0 0 8px rgba(184, 92, 92, 0.7);
    animation: livePulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
  }
  .twitch-live .schedule {
    font-style: normal;
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
  }

  /* ============ INTAKE FORM ============ */
  .intake-form {
    margin: 2.5rem auto 0;
    max-width: 720px;
    text-align: left;
    display: grid;
    gap: 1.4rem;
  }
  .intake-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
  .intake-form label {
    display: block;
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
  }
  .intake-form .req {
    color: var(--twilight-bright);
    font-weight: 700;
  }
  .intake-form input[type="text"],
  .intake-form input[type="email"],
  .intake-form input[type="url"],
  .intake-form textarea {
    width: 100%;
    background: rgba(7, 6, 10, 0.7);
    border: 1px solid rgba(201, 162, 74, 0.3);
    padding: 0.85rem 1rem;
    color: var(--parchment);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .intake-form textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
  }
  .intake-form input:focus,
  .intake-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 0 18px rgba(201, 162, 74, 0.15);
  }
  .intake-form input::placeholder,
  .intake-form textarea::placeholder {
    color: rgba(217, 199, 160, 0.4);
    font-style: italic;
  }
  .intake-form .options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .intake-form .options label {
    margin: 0;
    cursor: pointer;
    border: 1px solid rgba(201, 162, 74, 0.3);
    padding: 0.55rem 0.95rem;
    background: rgba(7, 6, 10, 0.5);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--parchment);
    text-transform: none;
    transition: all 0.3s ease;
  }
  .intake-form .options label:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
  }
  .intake-form .options input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .intake-form .options input[type="radio"]:checked + span {
    color: var(--ink);
  }
  .intake-form .options label:has(input:checked) {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    color: var(--ink);
    box-shadow: 0 0 14px rgba(231, 200, 117, 0.3);
  }
  .intake-form .check-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--parchment);
    font-size: 1rem;
    cursor: pointer;
  }
  .intake-form .check-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
  }
  .intake-form .check-row label {
    font-family: 'Cormorant Garamond', serif;
    color: var(--parchment);
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
    margin: 0;
    cursor: pointer;
  }
  .intake-form .submit-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.6rem;
  }
  .intake-form button[type="submit"] {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1.1rem 2.6rem;
    color: var(--ink);
    background: var(--gold-bright);
    border: 1px solid var(--gold-bright);
    cursor: pointer;
    transition: all 0.4s ease;
  }
  .intake-form button[type="submit"]:hover {
    background: var(--gold);
    box-shadow: 0 0 28px rgba(231, 200, 117, 0.5);
    transform: translateY(-2px);
  }
  .intake-form .form-note {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--parchment);
    opacity: 0.75;
    font-size: 0.9rem;
    text-align: center;
  }

  @media (max-width: 880px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { order: -1; }
    .intake-form .row { grid-template-columns: 1fr; }
  }

  /* ============ CONSOLIDATED MOBILE TIGHTENING ============ */
  @media (max-width: 720px) {
    .page { padding-top: 5rem; }
    .hero { padding: 2rem 1.2rem; min-height: calc(100vh - 5rem); }
    .hero .subtitle { font-size: 1.05rem; }
    .hero .cta-row { flex-direction: column; gap: 0.7rem; width: 100%; max-width: 320px; }
    .hero .cta-row .btn { width: 100%; text-align: center; }
    .scroll-cue { display: none; }
    .featured, .pricing, .process, .faq, .testimonials,
    .commission-form-section, .about, .final-cta { padding: 3.5rem 1.2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-portrait { max-width: 260px; margin: 0 auto; }
    .faq-item > summary { padding: 1.2rem 2rem 1.2rem 0; font-size: 0.95rem; }
    .faq-item > p { font-size: 1rem; line-height: 1.7; padding-bottom: 1.4rem; }
    .commission-form { padding: 2rem 1rem; }
    .tier-picker { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .addon-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .no-ai { padding: 1.6rem 1.2rem; font-size: 0.95rem; }
    .twitch-live { font-size: 0.88rem; padding: 0.5rem 0.9rem; }
    .slot-status { margin: 0.6rem auto 0; }
    .final-cta-inner { padding: 2.5rem 1.4rem; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 0.78rem; letter-spacing: 0.3em; }
    .btn { padding: 0.95rem 1.6rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    .grain { animation: none; }
    .ember { display: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .faq-item > p { animation: none; }
  }

  /* ============ FUNNEL ADDITIONS ============ */

  /* ---- SKETCH TIER ---- */
  .sketch-tier {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    padding: 1.4rem 1.8rem;
    background: linear-gradient(135deg, rgba(46, 74, 95, 0.18), rgba(26, 20, 14, 0.4));
    border: 1px solid rgba(127, 196, 230, 0.22);
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    position: relative;
  }
  .sketch-tier::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--twilight-bright), transparent);
    opacity: 0.6;
  }
  .sketch-tier .sketch-flag {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--twilight-glow);
    opacity: 0.85;
  }
  .sketch-tier h4 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    color: var(--parchment);
    margin: 0.2rem 0 0.3rem;
    letter-spacing: 0.05em;
  }
  .sketch-tier .sketch-price {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.2rem;
    color: var(--gold-bright);
    line-height: 1;
  }
  .sketch-tier .sketch-price .currency {
    font-size: 1.1rem;
    vertical-align: super;
    color: var(--gold);
    margin-right: 0.1rem;
  }
  .sketch-tier .sketch-copy {
    flex: 1;
    min-width: 240px;
    color: var(--parchment-2);
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .sketch-tier .sketch-copy em {
    color: var(--twilight-glow);
    font-style: italic;
  }
  @media (max-width: 640px) {
    .sketch-tier { padding: 1.2rem 1.3rem; gap: 1rem; }
    .sketch-tier .sketch-price { font-size: 1.8rem; }
  }

  /* ---- TIER EXAMPLE THUMBNAILS ---- */
  .tier-examples {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px dashed rgba(201, 162, 74, 0.18);
  }
  .tier-examples .tier-thumb {
    flex: 1;
    aspect-ratio: 1 / 1;
    background: rgba(46, 74, 95, 0.15);
    border: 1px solid rgba(201, 162, 74, 0.18);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
  }
  .tier-examples .tier-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .tier-examples .tier-thumb:hover img { transform: scale(1.06); }
  .tier-examples .tier-thumb.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--parchment-dark);
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.7rem;
    opacity: 0.5;
  }
  .tier-examples-label {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dim);
    text-align: center;
    margin-top: 0.7rem;
    margin-bottom: -0.3rem;
  }

  /* ---- PARTY BUNDLE CARD ---- */
  .party-bundle {
    max-width: 900px;
    margin: 2.5rem auto 0;
    padding: 1.8rem 2rem;
    background:
      linear-gradient(135deg, rgba(106, 27, 27, 0.12), transparent 60%),
      rgba(26, 20, 14, 0.5);
    border: 1px solid rgba(201, 162, 74, 0.25);
    border-radius: 2px;
    text-align: center;
    position: relative;
  }
  .party-bundle .bundle-flag {
    display: inline-block;
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-bright);
    background: var(--ink);
    padding: 0.3rem 0.9rem;
    border: 1px solid var(--gold-dim);
    border-radius: 2px;
    margin-bottom: 0.9rem;
  }
  .party-bundle h4 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    color: var(--parchment);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
  }
  .party-bundle p {
    color: var(--parchment-2);
    max-width: 640px;
    margin: 0 auto 0.9rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .party-bundle .bundle-math {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.9rem;
    justify-content: center;
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.92rem;
    margin-top: 0.4rem;
  }
  .party-bundle .bundle-math span {
    border-bottom: 1px dotted rgba(201, 162, 74, 0.35);
    padding-bottom: 1px;
  }

  /* ---- ToS TL;DR CARD ---- */
  .tos-tldr {
    max-width: 760px;
    margin: 0 auto 2rem;
    padding: 1.4rem 1.8rem 1.6rem;
    background:
      linear-gradient(135deg, rgba(46, 74, 95, 0.12), rgba(26, 20, 14, 0.35));
    border: 1px solid rgba(201, 162, 74, 0.18);
    border-radius: 2px;
    position: relative;
  }
  .tos-tldr::before {
    content: '✦';
    position: absolute;
    top: -0.65rem; left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--gold);
    font-size: 0.85rem;
    padding: 0 0.7rem;
    letter-spacing: 0.4em;
  }
  .tos-tldr h4 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-bright);
    text-align: center;
    margin-bottom: 1rem;
  }
  .tos-tldr ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
  }
  .tos-tldr li {
    color: var(--parchment-2);
    font-size: 0.93rem;
    line-height: 1.5;
    padding-left: 1.4rem;
    position: relative;
  }
  .tos-tldr li::before {
    content: '▸';
    position: absolute;
    left: 0; top: 0;
    color: var(--gold);
    font-size: 0.85rem;
  }
  .tos-tldr li strong { color: var(--parchment); font-weight: 500; }
  .tos-tldr .tos-fineprint {
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(201, 162, 74, 0.12);
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--parchment-dark);
    text-align: center;
  }
  .tos-tldr .tos-fineprint a {
    color: var(--twilight-glow);
    text-decoration: none;
    border-bottom: 1px dotted var(--twilight-mid);
  }

  /* ---- LORE PLATE: COPY-LINK SHARE BUTTON ---- */
  .story-share {
    margin-top: 1.4rem;
    text-align: center;
  }
  .story-share-btn {
    background: transparent;
    border: 1px solid rgba(127, 196, 230, 0.28);
    color: var(--twilight-glow);
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .story-share-btn:hover {
    border-color: var(--twilight-bright);
    color: var(--twilight-bright);
    background: rgba(127, 196, 230, 0.06);
  }
  .story-share-btn.copied {
    color: var(--gold-bright);
    border-color: var(--gold);
  }

  /* ---- LORE PLATE: TIERED CTA WITH TWO BUTTONS ---- */
  .story-cta-row {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  /* ---- EMAIL CAPTURE / "JOIN THE ETHER" ---- */
  .ether-list {
    max-width: 760px;
    margin: 5rem auto 0;
    padding: 2.6rem 2rem 2.8rem;
    background:
      radial-gradient(ellipse 60% 80% at 50% 30%, rgba(127, 196, 230, 0.06), transparent 70%),
      linear-gradient(180deg, rgba(26, 20, 14, 0.4), rgba(7, 6, 10, 0.3));
    border: 1px solid rgba(201, 162, 74, 0.2);
    border-radius: 2px;
    text-align: center;
    position: relative;
  }
  .ether-list .eyebrow {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--twilight-glow);
    margin-bottom: 0.8rem;
    opacity: 0.8;
  }
  .ether-list h3 {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--parchment);
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
  }
  .ether-list p {
    color: var(--parchment-2);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto 1.6rem;
  }
  .ether-list .ether-perks {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.88rem;
    color: var(--gold);
  }
  .ether-list .ether-perks span::before {
    content: '✦ ';
    color: var(--gold-dim);
    margin-right: 0.2rem;
  }
  .ether-form {
    display: flex;
    gap: 0.5rem;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .ether-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.85rem 1.1rem;
    background: rgba(7, 6, 10, 0.6);
    border: 1px solid rgba(201, 162, 74, 0.25);
    color: var(--parchment);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  .ether-form input[type="email"]:focus {
    border-color: var(--gold);
  }
  .ether-form button {
    padding: 0.85rem 1.6rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .ether-form button:hover {
    background: rgba(201, 162, 74, 0.08);
    color: var(--parchment);
  }
  .ether-list .ether-fineprint {
    margin-top: 1rem;
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.78rem;
    color: var(--parchment-dark);
  }
  .ether-status {
    margin-top: 0.9rem;
    font-size: 0.9rem;
    min-height: 1.2em;
  }
  .ether-status.success { color: var(--gold-bright); }
  .ether-status.error { color: #d97a7a; }
  @media (max-width: 600px) {
    .ether-list { padding: 2rem 1.4rem 2.2rem; }
    .ether-list h3 { font-size: 1.4rem; }
  }

  /* ---- FOOTER ECOSYSTEM ROW ---- */
  footer {
    border-top: 1px solid rgba(201, 162, 74, 0.12);
    padding-top: 2.2rem;
  }
  .footer-elsewhere {
    text-align: center;
    margin-bottom: 1.6rem;
  }
  .footer-elsewhere-label {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.9rem;
  }
  .footer-elsewhere-links {
    display: flex;
    gap: 0.4rem 1.6rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-elsewhere-links a {
    font-family: 'IM Fell English', serif;
    color: var(--twilight-glow);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    border-bottom: 1px dotted transparent;
    transition: all 0.3s ease;
    padding-bottom: 1px;
  }
  .footer-elsewhere-links a:hover {
    color: var(--twilight-bright);
    border-bottom-color: var(--twilight-mid);
  }

/* ============================================================
   ============ LIGHT / BRIGHT MODE OVERRIDES =================
   ============================================================
   Activated by setting data-theme="light" on the <html> element.
   Default theme — set automatically by the early-init script in <head>
   unless the user has explicitly chosen 'dark'.

   Strategy:
   1. Re-map the semantic color tokens. Most of the page picks up the
      new palette for free because the existing rules use var(--ink),
      var(--parchment), var(--gold), etc.
   2. For the elements with hardcoded dark rgba() backgrounds (cards,
      gradients, overlays) — explicitly override them below.
   3. Keep the gold + twilight accent identity intact, just shifted
      darker so they read on a cream background.

   To revert any element to the dark-mode baseline, just delete its
   override here — the original CSS still wins when data-theme is unset.
   ============================================================ */

[data-theme="light"] {
  /* ---- Background tones ----
     "ink" stops being literal black; in daylight it's parchment cream. */
  --ink:               #f5edd6;
  --ink-2:             #ebdfc1;
  --ink-3:             #ddc9a0;
  --sepia:             #c8b182;
  --sepia-2:           #b89e6a;

  /* ---- Foreground / text ----
     The "parchment" token now means "the dark ink you write ON parchment". */
  --parchment:         #2a1a0c;
  --parchment-2:       #4a3318;
  --parchment-dark:    #6e5630;
  --ink-on-parchment:  #2a1a0c;

  /* ---- Gold accents ----
     Dropped a few notches for contrast on a cream background.
     Bright stays vivid; dim/deep go quite dark for borders & dividers. */
  --gold:              #946d1c;
  --gold-bright:       #b8902f;
  --gold-dim:          #7a5a17;
  --gold-deep:         #4a3a10;

  /* ---- Twilight blue accents ----
     Light-blue cyans become deeper teal/slate so the accent reads on cream. */
  --twilight:          #3d6378;
  --twilight-glow:     #4a7a92;
  --twilight-bright:   #2e5a73;
  --twilight-deep:     #1f3a4a;
  --twilight-ink:      #15222e;
  --twilight-mid:      #5a85a0;

  --blood:             #8a2828;
}

/* Smooth crossfade for the body background + text on theme switch.
   Already declared on html,body up top — this just reinforces. */
[data-theme="light"] body,
[data-theme="dark"] body {
  transition: background-color 0.7s ease, color 0.7s ease;
}

/* ---- ATMOSPHERE: tone down the radial glows so they sit on cream nicely ---- */
[data-theme="light"] .atmosphere::before {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(127, 196, 230, 0.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 15% 90%, rgba(201, 162, 74, 0.12), transparent 70%),
    radial-gradient(ellipse 70% 50% at 90% 40%, rgba(61, 99, 120, 0.14), transparent 70%),
    radial-gradient(ellipse 40% 30% at 10% 30%, rgba(46, 74, 95, 0.10), transparent 65%);
}
[data-theme="light"] .atmosphere::after {
  opacity: 0.35;
}
[data-theme="light"] .grain {
  opacity: 0.06;
  mix-blend-mode: multiply;
}
/* Cursor glow — softer warm tint instead of fire-on-black */
[data-theme="light"] .cursor-glow {
  background:
    radial-gradient(circle at center,
      rgba(231, 200, 117, 0.14) 0%,
      rgba(201, 162, 74, 0.09) 15%,
      rgba(127, 196, 230, 0.07) 35%,
      rgba(61, 99, 120, 0.04) 55%,
      transparent 70%);
  mix-blend-mode: multiply;
}

/* ---- NAV ---- */
[data-theme="light"] nav.main {
  background: linear-gradient(to bottom,
    rgba(245, 237, 214, 0.95) 0%,
    rgba(245, 237, 214, 0.75) 70%,
    transparent 100%);
  border-bottom: 1px solid rgba(148, 109, 28, 0.22);
}
[data-theme="light"] nav.main .crest svg {
  filter: drop-shadow(0 0 6px rgba(46, 90, 115, 0.25));
}
[data-theme="light"] nav.main .crest:hover svg {
  filter: drop-shadow(0 0 10px rgba(46, 90, 115, 0.45));
}

/* ---- MOBILE MENU OVERLAY ---- */
[data-theme="light"] .mobile-menu {
  background: linear-gradient(180deg,
    rgba(245, 237, 214, 0.98),
    rgba(235, 223, 193, 0.98));
}

/* ---- HERO ---- */
[data-theme="light"] .hero h1 {
  text-shadow:
    0 0 30px rgba(148, 109, 28, 0.18),
    0 0 60px rgba(46, 90, 115, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.4);
}
[data-theme="light"] .hero h1::before {
  background: radial-gradient(ellipse at center, rgba(184, 144, 47, 0.18), transparent 60%);
}
[data-theme="light"] .hero .eyebrow {
  text-shadow: 0 0 12px rgba(46, 90, 115, 0.25);
}

/* ---- BUTTONS ---- */
[data-theme="light"] .btn:hover {
  color: #f5edd6;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(148, 109, 28, 0.3);
}

/* ---- SLOT STATUS BANNER ---- */
[data-theme="light"] .slot-status {
  background: linear-gradient(180deg, rgba(184, 144, 47, 0.08), rgba(184, 144, 47, 0.02));
  box-shadow: 0 0 18px rgba(184, 144, 47, 0.08);
}

/* ---- FEATURED CARDS, CRAFT, PRICING, TESTIMONIALS, SOCIALS ----
   All share the same dark linear-gradient pattern; light it up uniformly. */
[data-theme="light"] .craft-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .social-card {
  background: linear-gradient(180deg,
    rgba(255, 250, 235, 0.7) 0%,
    rgba(235, 223, 193, 0.5) 100%);
  border-color: rgba(148, 109, 28, 0.25);
}
[data-theme="light"] .craft-card:hover,
[data-theme="light"] .pricing-card:hover,
[data-theme="light"] .social-card:hover {
  box-shadow: 0 14px 30px rgba(60, 40, 20, 0.12), 0 0 28px rgba(184, 144, 47, 0.15);
}
[data-theme="light"] .pricing-card.featured {
  background: linear-gradient(180deg,
    rgba(231, 200, 117, 0.28) 0%,
    rgba(245, 237, 214, 0.6) 100%);
  box-shadow: 0 6px 20px rgba(148, 109, 28, 0.18);
}
[data-theme="light"] .pricing-card .pop-badge {
  color: #f5edd6;
}

/* Featured card overlay — lighter so dark text stays legible on art */
[data-theme="light"] .featured-card .overlay {
  background: linear-gradient(to top,
    rgba(245, 237, 214, 0.95) 0%,
    rgba(245, 237, 214, 0.4) 50%,
    transparent 100%);
}
[data-theme="light"] .featured-card h4 {
  text-shadow: 0 1px 2px rgba(255, 250, 235, 0.6);
}
[data-theme="light"] .featured-card:hover {
  box-shadow: 0 14px 30px rgba(60, 40, 20, 0.18), 0 0 30px rgba(46, 90, 115, 0.15);
}

/* ---- PROCESS STEPS ---- */
[data-theme="light"] .process-step {
  background: linear-gradient(180deg,
    rgba(220, 232, 240, 0.5) 0%,
    rgba(245, 237, 214, 0.4) 100%);
  border-color: rgba(46, 90, 115, 0.22);
}
[data-theme="light"] .process-step:hover {
  box-shadow: 0 14px 30px rgba(60, 40, 20, 0.12), 0 0 28px rgba(46, 90, 115, 0.12);
}

/* ---- TESTIMONIAL CARD QUOTE MARK ---- */
[data-theme="light"] .testimonial-card::before {
  color: rgba(148, 109, 28, 0.35);
}

/* ---- ABOUT PORTRAIT FRAME ---- */
[data-theme="light"] .about-portrait {
  background:
    radial-gradient(ellipse at 50% 25%, rgba(46, 90, 115, 0.18), transparent 55%),
    radial-gradient(ellipse at 50% 85%, rgba(31, 58, 74, 0.22), transparent 60%),
    linear-gradient(135deg, var(--twilight-ink) 0%, var(--ink-2) 100%);
}

/* ---- TAG FILTER (tome page) ---- */
[data-theme="light"] .tag-filter button {
  border-color: rgba(148, 109, 28, 0.32);
}
[data-theme="light"] .tag-filter button:hover {
  background: rgba(46, 90, 115, 0.12);
  box-shadow: 0 0 12px rgba(46, 90, 115, 0.15);
}
[data-theme="light"] .tag-filter button.active {
  background: var(--gold);
  color: #f5edd6;
  box-shadow: 0 0 14px rgba(148, 109, 28, 0.3);
}

/* ---- THE BOOK (tome page) ----
   The book has a dramatic dark spine with light pages; in bright mode
   we flip it: cream pages with a subtle dark spine. */
[data-theme="light"] .book {
  background: linear-gradient(90deg,
    rgba(220, 200, 160, 0.7) 0%,
    rgba(200, 180, 140, 0.8) 49%,
    rgba(94, 70, 32, 0.85) 50%,
    rgba(200, 180, 140, 0.8) 51%,
    rgba(220, 200, 160, 0.7) 100%);
  box-shadow:
    0 20px 50px rgba(60, 40, 20, 0.25),
    0 0 60px rgba(148, 109, 28, 0.08),
    inset 0 0 100px rgba(148, 109, 28, 0.06);
}
[data-theme="light"] .book::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(60, 40, 20, 0.5) 45%,
    rgba(94, 70, 32, 0.7) 50%,
    rgba(60, 40, 20, 0.5) 55%,
    transparent 100%);
}
[data-theme="light"] .page-left,
[data-theme="light"] .page-right {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(148, 109, 28, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(245, 237, 214, 0.5), rgba(235, 223, 193, 0.4));
}
/* The ✦ in the byline punches through the underline using --ink as bg.
   On light, that's already a cream — but the surrounding gradient is
   slightly different cream, so we explicitly match the pages. */
[data-theme="light"] .story .byline::after {
  background: rgb(240, 230, 205);
}
/* Same trick used in tos-tldr's ::before */
[data-theme="light"] .tos-tldr::before {
  background: var(--ink);
}

/* ---- ART FRAME ---- */
[data-theme="light"] .art-frame {
  box-shadow:
    inset 0 0 30px rgba(60, 40, 20, 0.12),
    0 4px 14px rgba(60, 40, 20, 0.15);
}

/* ---- BOOK NAV BUTTONS ---- */
[data-theme="light"] .book-nav button:hover:not(:disabled) {
  box-shadow: 0 0 14px rgba(184, 144, 47, 0.3), 0 0 22px rgba(46, 90, 115, 0.12);
}

/* ---- COMMISSION FORM ---- */
[data-theme="light"] .commission-form {
  background: linear-gradient(180deg,
    rgba(220, 232, 240, 0.5) 0%,
    rgba(245, 237, 214, 0.5) 100%);
}
[data-theme="light"] .commission-form input[type="text"],
[data-theme="light"] .commission-form input[type="email"],
[data-theme="light"] .commission-form select,
[data-theme="light"] .commission-form textarea,
[data-theme="light"] .intake-form input[type="text"],
[data-theme="light"] .intake-form input[type="email"],
[data-theme="light"] .intake-form input[type="url"],
[data-theme="light"] .intake-form textarea,
[data-theme="light"] .ether-form input[type="email"] {
  background: rgba(255, 252, 245, 0.85);
  border-color: rgba(148, 109, 28, 0.32);
}
[data-theme="light"] .commission-form input[type="text"]:focus,
[data-theme="light"] .commission-form input[type="email"]:focus,
[data-theme="light"] .commission-form select:focus,
[data-theme="light"] .commission-form textarea:focus {
  background: rgba(255, 253, 248, 1);
  box-shadow: 0 0 16px rgba(148, 109, 28, 0.18), inset 0 0 8px rgba(46, 90, 115, 0.05);
}
[data-theme="light"] .tier-option .tier-card,
[data-theme="light"] .addon-chip .chip-body,
[data-theme="light"] .intake-form .options label {
  background: rgba(255, 252, 245, 0.7);
  border-color: rgba(148, 109, 28, 0.3);
}
[data-theme="light"] .tier-option:hover .tier-card {
  background: rgba(255, 252, 245, 0.95);
}
[data-theme="light"] .tier-option input:checked + .tier-card {
  background: linear-gradient(180deg, rgba(184, 144, 47, 0.18), rgba(184, 144, 47, 0.06));
  box-shadow: 0 0 14px rgba(184, 144, 47, 0.22);
}
[data-theme="light"] .addon-chip input:checked + .chip-body {
  background: linear-gradient(180deg, rgba(184, 144, 47, 0.2), rgba(184, 144, 47, 0.06));
}
[data-theme="light"] .intake-form .options label:has(input:checked) {
  color: #f5edd6;
}

/* ---- FINAL CTA ---- */
[data-theme="light"] .final-cta-inner {
  background: linear-gradient(180deg,
    rgba(220, 232, 240, 0.55) 0%,
    rgba(245, 237, 214, 0.45) 100%);
}
[data-theme="light"] .cta-glow {
  background: radial-gradient(ellipse at center, rgba(46, 90, 115, 0.15), transparent 60%);
}

/* ---- STICKY MOBILE CTA ---- */
[data-theme="light"] .sticky-cta {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #f5edd6;
  box-shadow:
    0 8px 22px rgba(60, 40, 20, 0.25),
    0 0 14px rgba(184, 144, 47, 0.25);
}

/* ---- FAQ ---- */
[data-theme="light"] .faq-list,
[data-theme="light"] .faq-item {
  border-color: rgba(148, 109, 28, 0.22);
}

/* ---- FOOTER ---- */
[data-theme="light"] footer {
  background: linear-gradient(to top, rgba(235, 223, 193, 0.7), transparent);
  border-top: 1px solid rgba(148, 109, 28, 0.2);
}

/* ---- LIGHTBOX ----
   Keep the backdrop a touch darker so the artwork pops against it,
   but a deep parchment-tinted brown rather than near-black. */
[data-theme="light"] .lightbox {
  background: rgba(50, 35, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
[data-theme="light"] .lightbox-image-wrap {
  background: var(--ink-2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(46, 90, 115, 0.15);
}
[data-theme="light"] .lightbox-meta {
  color: #f5edd6;
}
[data-theme="light"] .lightbox-tag {
  color: #b3d2e0;
}
[data-theme="light"] .lightbox h3 {
  color: #e7c875;
  text-shadow: 0 0 14px rgba(231, 200, 117, 0.3);
}
[data-theme="light"] .lightbox-journal {
  color: #e7c875;
  border-color: rgba(231, 200, 117, 0.5);
}
[data-theme="light"] .lightbox-journal:hover {
  color: #f5edd6;
  border-color: #f5edd6;
}
[data-theme="light"] .lightbox-close {
  background: rgba(50, 35, 18, 0.85);
  color: #e7c875;
  border-color: rgba(231, 200, 117, 0.5);
}
[data-theme="light"] .lightbox-close:hover {
  color: #f5edd6;
  border-color: #f5edd6;
}

/* ---- TWITCH LIVE LINK ---- */
[data-theme="light"] .twitch-live {
  background: rgba(46, 90, 115, 0.10);
  border-color: rgba(46, 90, 115, 0.32);
}

/* ---- SKETCH TIER & PARTY BUNDLE & TOS-TLDR ---- */
[data-theme="light"] .sketch-tier {
  background: linear-gradient(135deg, rgba(46, 90, 115, 0.10), rgba(245, 237, 214, 0.55));
  border-color: rgba(46, 90, 115, 0.25);
}
[data-theme="light"] .party-bundle {
  background:
    linear-gradient(135deg, rgba(138, 40, 40, 0.10), transparent 60%),
    rgba(245, 237, 214, 0.55);
  border-color: rgba(148, 109, 28, 0.3);
}
[data-theme="light"] .party-bundle .bundle-flag {
  background: rgb(240, 230, 205);
}
[data-theme="light"] .tos-tldr {
  background: linear-gradient(135deg, rgba(46, 90, 115, 0.10), rgba(245, 237, 214, 0.45));
  border-color: rgba(148, 109, 28, 0.22);
}

/* ---- ETHER MAILING LIST ---- */
[data-theme="light"] .ether-list {
  background:
    radial-gradient(ellipse 60% 80% at 50% 30%, rgba(46, 90, 115, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(235, 223, 193, 0.5), rgba(245, 237, 214, 0.35));
  border-color: rgba(148, 109, 28, 0.25);
}

/* ---- STATUS DOT (slot status) -- keep green/red, slightly muted ---- */
[data-theme="light"] .slot-status .dot {
  background: #4a9d52;
  box-shadow: 0 0 6px rgba(74, 157, 82, 0.6), 0 0 12px rgba(74, 157, 82, 0.3);
}
[data-theme="light"] .slot-status.closed .dot {
  background: #a04848;
  box-shadow: 0 0 6px rgba(160, 72, 72, 0.6), 0 0 12px rgba(160, 72, 72, 0.3);
}

/* ---- DROP CAPS (about + story) — softer shadow on light bg ---- */
[data-theme="light"] .about-text .drop-cap::first-letter,
[data-theme="light"] .story-body p:first-of-type::first-letter {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
[data-theme="light"] .story h2 {
  text-shadow: 0 0 14px rgba(148, 109, 28, 0.18);
}

/* ---- SECTION TITLES ---- */
[data-theme="light"] .section-title {
  text-shadow: 0 0 18px rgba(148, 109, 28, 0.18);
}

/* ---- INTAKE FORM SUBMIT BUTTON ---- */
[data-theme="light"] .intake-form button[type="submit"] {
  color: #f5edd6;
  background: var(--gold);
  border-color: var(--gold);
}
[data-theme="light"] .intake-form button[type="submit"]:hover {
  background: var(--gold-bright);
  box-shadow: 0 6px 22px rgba(148, 109, 28, 0.35);
}

/* ---- TAG FILTER ACTIVE BUTTON TEXT (already gold-bg, ensure text is light) ---- */
[data-theme="light"] .tag-filter button.active {
  color: #f5edd6;
}

/* ---- ADDON PILL ---- */
[data-theme="light"] .addon-pill {
  background: rgba(184, 144, 47, 0.08);
  border-color: rgba(148, 109, 28, 0.32);
}

/* ---- THEME TOGGLE: tweak in light mode ---- */
[data-theme="light"] .theme-toggle {
  background: rgba(245, 237, 214, 0.82);
  border-color: rgba(148, 109, 28, 0.4);
  color: var(--gold-dim);
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(245, 237, 214, 0.96);
  box-shadow: 0 0 14px rgba(184, 144, 47, 0.25), 0 0 24px rgba(46, 90, 115, 0.15);
}

/* ---- REDUCED MOTION: also disable dust motes ---- */
@media (prefers-reduced-motion: reduce) {
  .mote { display: none; }
}
