/**
 * css/tarot-hub2.css — /tarot2.php exploration version
 *
 * Layered "rooms" with distinct backgrounds — apothecary cabinet feel.
 * Each ROOM has its own atmosphere; decorative TRANSITIONS between them.
 * The 3 tool cards are reimagined as upright tarot cards (DOORWAYS) —
 * vertical aspect ratio, ornate gold frames, banner top + art panel + banner bottom.
 *
 * Inherits brand v2 base from yes-no-tarot.css + tarot-hub.css. Override
 * only what's different. Scope all selectors with .t2- prefix to avoid
 * leaking into the original /tarot/ page.
 */

/* ───────────────────────────────────────────────
   PAGE BACKDROP
   ─────────────────────────────────────────────── */
body.t2-page {
  background: #FAF3E0;  /* base parchment */
}
.t2-main {
  position: relative;
  overflow: hidden;     /* keeps decorative elements contained */
}

/* ───────────────────────────────────────────────
   ROOMS — each section is a "room" with its own bg
   ─────────────────────────────────────────────── */
.t2-room {
  position: relative;
  padding: 5rem 1.5rem;
  isolation: isolate;
}

/* ROOM 1 — HERO (warm golden hour).
   Wrapper is COMPLETELY layout-transparent — zero padding, zero size
   change. The inner <section class="page-hero"> uses yes-no-tarot.css
   exclusively (padding: 2rem 2rem 2.5rem; max-width: 920px; etc.) so
   back-link + medallions render at the IDENTICAL pixel positions
   across yes/no, COTD, 3-card, and tarot2. The wrapper exists ONLY
   to paint the radial-gradient background behind the hero. */
.t2-room-hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(251, 230, 168, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(212, 172, 104, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #FAF3E0 0%, #F5EFE0 100%);
  padding: 0;
  margin: 0;
}
/* No .page-hero overrides — yes-no-tarot.css owns it completely (max-width:920px, padding:2rem 2rem 2.5rem). */

/* ROOM 2 — RITUAL CHAMBER (dark aubergine — entering the inner sanctum)
   Full-bleed: breaks out of .yn-page's 32px horizontal padding so the
   purple background runs edge-to-edge across the whole monitor. */
.t2-room-ritual {
  background:
    radial-gradient(ellipse 70% 45% at 50% 12%, rgba(107, 31, 44, 0.42) 0%, transparent 75%),
    radial-gradient(ellipse 80% 60% at 50% 95%, rgba(212, 172, 104, 0.10) 0%, transparent 75%),
    #2D1428;
  color: #F5EFE0;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  /* Full-bleed escape from parent padding (works at any viewport size) */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.t2-room-ritual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix type='matrix' values='0 0 0 0 0.85  0 0 0 0 0.65  0 0 0 0 0.30  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.t2-room-ritual > * { position: relative; z-index: 1; }

/* ROOM 3 — EDITORIAL — uses the standard page background (matches v1) */
.t2-room-editorial {
  background: transparent;
  padding: 6rem 1.5rem 4rem;        /* tighter bottom — closer to the next gold rule */
}

/* ROOM 4 — MAJOR ARCANA */
.t2-room-major {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245, 239, 224, 0.6) 0%, transparent 80%),
    linear-gradient(180deg, #F5EFE0 0%, #FAF3E0 100%);
  padding: 3.5rem 1.5rem 4rem;       /* tighter top — XXII sits closer to gold rule */
}

/* ROOM 5 — MINOR ARCANA */
.t2-room-minor {
  background: linear-gradient(180deg, #FAF3E0 0%, #F5EFE0 100%);
  padding: 3.5rem 1.5rem 5rem;       /* tighter top — LVI sits closer to Major section above */
}

/* ROOM 6 — FAQ */
.t2-room-faq {
  background: linear-gradient(180deg, #F5EFE0 0%, #FAF3E0 100%);
  padding: 6rem 1.5rem 5rem;
}

.t2-room-apothecary {
  background: #FAF3E0;
  padding: 0 1rem 0;
}

/* ───────────────────────────────────────────────
   DECORATIVE TRANSITIONS (between rooms)
   ─────────────────────────────────────────────── */
.t2-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 2rem 2rem;
  background: #2B1227;       /* dark band by default */
  position: relative;
  /* Full-bleed escape from parent padding */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* Dark-to-light transition — keeps the dark color longer so the gold line
   sits firmly on the dark portion (where contrast is best), then quickly
   fades to cream for the next room's bg. */
.t2-transition.t2-transition-light {
  background: linear-gradient(180deg,
    #2D1428 0%,
    #2D1428 55%,
    #5a3550 78%,
    #F5EFE0 100%
  );
  padding: 3rem 2rem 4rem;          /* extra bottom padding for the gradient fade */
}
.t2-transition.t2-transition-light .t2-transition-line {
  background: linear-gradient(to right, transparent 0%, rgba(212, 172, 104, 0.5) 25%, #D4AC68 50%, rgba(212, 172, 104, 0.5) 75%, transparent 100%);
}
.t2-transition.t2-transition-light .t2-transition-fleuron {
  color: #D4AC68;
  font-size: 1.6rem;
  text-shadow: 0 0 16px rgba(212, 172, 104, 0.7);
}
.t2-transition.t2-transition-warm {
  background: #F5EFE0;
  padding: 0.4rem 2rem;     /* tight — line sits flush at the boundary */
  margin-top: -1rem;        /* pull up to remove blank space above */
  margin-bottom: 0;
}
.t2-transition-line {
  flex: 1;
  /* No max-width — line spans the full available width across the browser */
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(184, 145, 80, 0.4) 25%, #B89150 50%, rgba(184, 145, 80, 0.4) 75%, transparent 100%);
}
.t2-transition-fleuron {
  color: #D4AC68;
  font-size: 1.4rem;
  text-shadow: 0 0 14px rgba(212, 172, 104, 0.5);
}
.t2-transition.t2-transition-warm .t2-transition-fleuron {
  color: #8E6E3A;
  text-shadow: 0 0 8px rgba(212, 172, 104, 0.3);
}

/* ───────────────────────────────────────────────
   ATMOSPHERIC ELEMENTS
   ─────────────────────────────────────────────── */
.t2-float-ornaments,
.t2-star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.t2-orn,
.t2-star {
  position: absolute;
  display: inline-block;
  color: #B89150;
  opacity: 0.4;
  animation: t2Float 7.5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(212, 172, 104, 0.5));
}
.t2-room-ritual .t2-star { color: #D4AC68; opacity: 0.6; }
@keyframes t2Float {
  0%, 100% { opacity: 0.3; transform: translateY(0) rotate(0); }
  50%      { opacity: 0.85; transform: translateY(-10px) rotate(8deg); }
}

/* ───────────────────────────────────────────────
   ROOM 2 HEADER
   ─────────────────────────────────────────────── */
.t2-room-head {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.t2-room-eyebrow {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #D4AC68;
  margin-bottom: 0.8rem;
}
.t2-room-title {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: #F5EFE0;
  margin: 0 0 0.2em;
  line-height: 0.95;
  letter-spacing: -0.005em;
}
.t2-room-title em {
  font-style: italic;
  background: linear-gradient(135deg, #D4AC68 0%, #FBE6A8 50%, #D4AC68 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.t2-room-script {
  font-family: 'Italianno', cursive;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: #D4AC68;
  margin: 0.4rem 0 0;
  text-shadow: 0 0 18px rgba(212, 172, 104, 0.4);
}
.t2-room-rule,
.t2-arcana-rule,
.t2-faq-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.4rem auto 1.2rem;
  max-width: 280px;
}
.t2-room-rule::before, .t2-room-rule::after,
.t2-arcana-rule::before, .t2-arcana-rule::after,
.t2-faq-rule::before, .t2-faq-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #D4AC68, transparent);
}
.t2-room-rule span,
.t2-arcana-rule span,
.t2-faq-rule span {
  color: #D4AC68;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(212, 172, 104, 0.5);
}
.t2-arcana-rule span,
.t2-faq-rule span { color: #8E6E3A; }
.t2-arcana-rule::before, .t2-arcana-rule::after,
.t2-faq-rule::before, .t2-faq-rule::after {
  background: linear-gradient(to right, transparent, #B89150, transparent);
}

/* ───────────────────────────────────────────────
   THE THREE DOORWAYS (tool cards as actual tarot cards)
   ─────────────────────────────────────────────── */
.t2-doorways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.t2-doorway {
  text-decoration: none;
  color: inherit;
  display: block;
  perspective: 1200px;
}
.t2-doorway-card {
  position: relative;
  aspect-ratio: 100 / 130;       /* further tightened — minimal empty space, art panel still anchors the design */
  background: linear-gradient(160deg, #FAF3E0 0%, #F0E0BD 100%);
  border: 2px solid #D4AC68;
  border-radius: 6px;
  padding: 1rem 1.2rem;          /* tightened top/bottom padding */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.35),
    0 18px 50px -12px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(184, 145, 80, 0.3);
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.55s ease,
              border-color 0.55s ease;
}
/* Inner double frame (paper grain underneath) */
.t2-doorway-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid #B89150;
  border-radius: 3px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}
/* Paper grain noise inside */
.t2-doorway-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' seed='3'/><feColorMatrix type='matrix' values='0 0 0 0 0.55  0 0 0 0 0.42  0 0 0 0 0.20  0 0 0 0.22 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.t2-doorway-card > * { position: relative; z-index: 2; }

.t2-doorway:hover .t2-doorway-card {
  transform: translateY(-12px) rotate(-1deg);
  border-color: #FBE6A8;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.4),
    0 32px 70px -16px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(212, 172, 104, 0.4),
    inset 0 0 0 1px rgba(212, 172, 104, 0.6);
}
.t2-doorway:nth-child(2):hover .t2-doorway-card { transform: translateY(-12px); }
.t2-doorway:nth-child(3):hover .t2-doorway-card { transform: translateY(-12px) rotate(1deg); }

/* Corner brackets — bigger, more decorative */
.t2-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: #8E6E3A;
  pointer-events: none;
  z-index: 3;
}
.t2-corner-tl { top: 14px;  left: 14px;  border-top: 2px solid; border-left:  2px solid; }
.t2-corner-tr { top: 14px;  right: 14px; border-top: 2px solid; border-right: 2px solid; }
.t2-corner-bl { bottom: 14px; left: 14px;  border-bottom: 2px solid; border-left:  2px solid; }
.t2-corner-br { bottom: 14px; right: 14px; border-bottom: 2px solid; border-right: 2px solid; }

/* TOP banner — tightened */
.t2-doorway-banner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0.5rem 0.5rem;
  border-bottom: 1px solid rgba(184, 145, 80, 0.35);
  margin-bottom: 0.4rem;
  font-family: 'EB Garamond', serif;
}
.t2-doorway-roman {
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  color: #6B1F2C;
  letter-spacing: 0.05em;
}
.t2-doorway-banner-name {
  flex: 1;
  text-align: center;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8E6E3A;
}

/* ART panel */
.t2-doorway-art-frame {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(212, 172, 104, 0.12) 0%, transparent 70%),
    rgba(58, 31, 56, 0.04);
  border-radius: 3px;
  margin: 0 0.2rem 0.7rem;
  position: relative;
}
.t2-doorway-art {
  width: 100%;
  max-width: 160px;
}
.t2-doorway-art svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(58, 31, 56, 0.18));
}

/* Animations on the card art */
.t2-doorway:nth-child(1) .t2-sun-rays {
  transform-origin: center;
  animation: t2SunSpin 28s linear infinite;
}
@keyframes t2SunSpin {
  from { transform: translate(100px, 100px) rotate(0); }
  to   { transform: translate(100px, 100px) rotate(360deg); }
}
.t2-doorway:nth-child(2) .t2-doorway-twinkle {
  transform-origin: center;
  animation: t2Twinkle 3.5s ease-in-out infinite;
}
.t2-doorway:nth-child(2) .t2-doorway-twinkle:nth-of-type(2) { animation-delay: -1s; }
.t2-doorway:nth-child(2) .t2-doorway-twinkle:nth-of-type(3) { animation-delay: -2s; }
.t2-doorway:nth-child(2) .t2-doorway-twinkle:nth-of-type(4) { animation-delay: -2.5s; }
@keyframes t2Twinkle {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}
.t2-doorway:nth-child(3) .t2-trio-card {
  transform-box: fill-box;
  animation: t2TrioBreath 5.4s ease-in-out infinite;
}
.t2-doorway:nth-child(3) .t2-trio-card-c { animation-delay: -1.8s; }
.t2-doorway:nth-child(3) .t2-trio-card:nth-of-type(3) { animation-delay: -3.6s; }
@keyframes t2TrioBreath {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.18) drop-shadow(0 0 6px rgba(212,172,104,0.55)); }
}
@media (prefers-reduced-motion: reduce) {
  .t2-doorway .t2-sun-rays,
  .t2-doorway .t2-doorway-twinkle,
  .t2-doorway .t2-trio-card,
  .t2-orn, .t2-star { animation: none; }
}

/* BOTTOM banner — tightened */
.t2-doorway-banner-bottom {
  border-top: 1px solid rgba(184, 145, 80, 0.35);
  padding: 0.5rem 0.4rem 0.1rem;
  text-align: center;
}
.t2-doorway-name {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;            /* was 0.92rem — bigger */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B1F2C;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.t2-doorway-tag {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.96rem;           /* was 0.85rem — slightly larger */
  font-weight: 500;             /* was default 400 — slightly bolder */
  color: #6B1F2C;               /* deepened from #8E6E3A — more present */
  line-height: 1.3;
}

/* CTA overlay (visible on hover) — bigger, more dramatic */
.t2-doorway-cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 1rem 1.4rem;          /* taller — covers more of the bottom on hover */
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(43, 18, 39, 0.65) 25%,
    rgba(43, 18, 39, 0.96) 70%,
    rgba(43, 18, 39, 1) 100%);
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 4;
  border-top: 1px solid rgba(212, 172, 104, 0.4);
}
.t2-doorway:hover .t2-doorway-cta-overlay {
  opacity: 1;
  transform: translateY(0);
}
.t2-doorway-cta {
  display: inline-block;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.22rem;                   /* was 1rem — much larger */
  color: #FBE6A8;                       /* brighter cream-gold */
  letter-spacing: 0.06em;
  text-shadow:
    0 0 12px rgba(212, 172, 104, 0.85),
    0 1px 2px rgba(0, 0, 0, 0.5);
  /* Slight slide-in arrow effect */
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1) 0.1s;
}
.t2-doorway:hover .t2-doorway-cta {
  transform: translateX(0);
}
/* Subtle gold underline beneath CTA text */
.t2-doorway-cta::after {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  margin: 0.45rem auto 0;
  background: linear-gradient(to right, transparent, rgba(251, 230, 168, 0.65), transparent);
}

/* ───────────────────────────────────────────────
   ROOM 3 — EDITORIAL (with botanical side ornaments)
   ─────────────────────────────────────────────── */
.t2-editorial-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.t2-editorial-inner h2 {
  font-family: 'EB Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.2rem, 4.4vw, 3rem);
  color: #6B1F2C;
  margin: 0 0 1.2rem;
  line-height: 1.1;
  text-align: left;            /* matches v1 — left-justified */
}
.t2-editorial-inner h3 {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  color: #3A1F38;
  margin: 2.6rem 0 0.9rem;
  line-height: 1.2;
  text-align: left;
}
.t2-editorial-inner p {
  font-family: 'EB Garamond', serif;
  font-size: 1.12rem;
  line-height: 1.78;
  color: #3a2826;
  margin: 0 0 1.3rem;
}
.t2-editorial-inner em { font-style: italic; color: #6B1F2C; }
.t2-editorial-inner strong { font-weight: 700; color: #6B1F2C; }
.t2-editorial-inner a {
  color: #6B1F2C;
  text-decoration: underline;
  text-decoration-color: rgba(184, 145, 80, 0.55);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.t2-editorial-inner a:hover { color: #D4AC68; text-decoration-color: #D4AC68; }

.t2-botanical {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 200px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.t2-botanical-left { left: 4%; }
.t2-botanical-right { right: 4%; }
@media (max-width: 1080px) {
  .t2-botanical { display: none; }
}

/* ───────────────────────────────────────────────
   ROOM 4 — MAJOR ARCANA HEADER
   ─────────────────────────────────────────────── */
.t2-arcana-head {
  text-align: center;
  margin-bottom: 3rem;
}
/* Roman numeral above the arcana eyebrow — chapter-mark feel */
.t2-arcana-roman {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: 0.18em;
  color: #6B1F2C;
  margin-bottom: 0.4rem;
  line-height: 1;
  text-shadow: 0 0 16px rgba(212, 172, 104, 0.25);
}
/* Eyebrow with flanking ornaments */
.t2-arcana-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #6B1F2C;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.t2-eyebrow-orn {
  color: #D4AC68;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(212, 172, 104, 0.55);
}
.t2-eyebrow-text {
  display: inline-block;
}
.t2-arcana-title {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.4rem, 5.4vw, 3.8rem);
  color: #3A1F38;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.005em;
}
.t2-arcana-title em {
  background: linear-gradient(135deg, #8E6E3A 0%, #D4AC68 50%, #8E6E3A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.t2-arcana-deck {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.18rem;          /* bumped from 1.08 */
  font-weight: 500;
  color: #3A1F38;              /* deeper aubergine — stands out */
  max-width: 620px;
  margin: 1.4rem auto 0.6rem;
  line-height: 1.65;
  letter-spacing: 0.005em;
}
.t2-arcana-deck strong {
  font-weight: 700;
  color: #6B1F2C;
  font-style: italic;
}
.t2-arcana-soon {
  font-family: 'Italianno', cursive;
  font-size: 1.7rem;
  color: #8E6E3A;
  margin: 0.4rem 0 0;
  letter-spacing: 0.01em;
}

/* ───────────────────────────────────────────────
   ROOM 5 — MINOR ARCANA SUITS (tinted chambers)
   ─────────────────────────────────────────────── */
.t2-suit {
  margin: 4rem auto 0;
  padding: 2.5rem 1.5rem 3rem;
  max-width: 1180px;
  border-radius: 6px;
  position: relative;
}
.t2-suit-wands {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(196, 75, 33, 0.1) 0%, transparent 70%),
              linear-gradient(180deg, #FBEED8 0%, #F5E2C8 100%);
  border: 1px solid rgba(196, 75, 33, 0.18);
}
.t2-suit-cups {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(58, 90, 130, 0.1) 0%, transparent 70%),
              linear-gradient(180deg, #EEEAE0 0%, #E5E5DA 100%);
  border: 1px solid rgba(58, 90, 130, 0.18);
}
.t2-suit-swords {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(150, 150, 200, 0.1) 0%, transparent 70%),
              linear-gradient(180deg, #F2EEE5 0%, #ECE6D8 100%);
  border: 1px solid rgba(150, 150, 200, 0.18);
}
.t2-suit-pentacles {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(94, 130, 60, 0.1) 0%, transparent 70%),
              linear-gradient(180deg, #F0E8D2 0%, #E8DEC0 100%);
  border: 1px solid rgba(94, 130, 60, 0.18);
}

.t2-suit-head {
  text-align: center;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 145, 80, 0.3);
}
.t2-suit-title {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: #3A1F38;
  margin: 0 0 0.4rem;
}
/* Element label inherits per-suit color (set below) + bolder treatment */
.t2-suit-element {
  font-style: italic;
  font-weight: 700;
  font-size: 0.92em;
  letter-spacing: 0.02em;
}
/* Per-element coloring */
.t2-suit-wands     .t2-suit-element { color: #B53815; }   /* Fire — warm red/copper */
.t2-suit-cups      .t2-suit-element { color: #2E5A82; }   /* Water — deep blue */
.t2-suit-swords    .t2-suit-element { color: #6E7A95; }   /* Air — cool steel */
.t2-suit-pentacles .t2-suit-element { color: #5E823C; }   /* Earth — moss green */

.t2-suit-desc {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.12rem;          /* bumped from 1rem */
  font-weight: 500;
  color: #3A1F38;              /* deeper aubergine — stands out vs prior #5a4034 */
  margin: 0 auto;
  max-width: 580px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* ─── Card name label override (a touch larger + bolder for v2) ─── */
.t2-card-grid .tarot-hub-card-name {
  font-size: 0.95rem;          /* was 0.82rem */
  font-weight: 700;            /* was 600 */
  letter-spacing: 0.03em;
  color: #3A1F38;
  margin-top: 0.6rem;
}
.t2-card-grid .tarot-hub-card-tile:hover .tarot-hub-card-name {
  color: #6B1F2C;
}

/* ───────────────────────────────────────────────
   FAQ
   ─────────────────────────────────────────────── */
.t2-room-faq {
  position: relative;
}
.t2-faq-title {
  font-family: 'EB Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(2.2rem, 4.4vw, 3rem);
  color: #6B1F2C;
  text-align: center;
  margin: 0 0 0.4rem;
}
.t2-faq-title em {
  background: linear-gradient(135deg, #8E6E3A 0%, #D4AC68 50%, #8E6E3A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.t2-faq-list {
  max-width: 760px;
  margin: 2.4rem auto 0;
}

/* ───────────────────────────────────────────────
   COLOPHON tweak
   ─────────────────────────────────────────────── */
/* Colophon — match v1 / yes/no / COTD: no gradient row, inherits page bg */
.t2-colophon {
  background: transparent;
}

/* ───────────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .t2-doorways {
    grid-template-columns: 1fr;
    max-width: 380px;
    gap: 2rem;
  }
  .t2-room { padding: 4rem 1rem; }
  .t2-room-ritual { padding: 5rem 1rem 5.5rem; }
  .t2-suit { padding: 2rem 1rem 2.4rem; }
}
