/* ============================================================
   No Choice Caring â€” shared stylesheet
   ============================================================ */

:root {
  --cream: #FAF6F0;
  --orange: #D85A30;
  --orange-dark: #993C1D;
  --orange-soft: #FAECE7;
  --charcoal: #2C2A28;
  --charcoal-soft: #5F5E5A;
  --teal: #1D9E75;
  --teal-soft: #E1F5EE;
  --gold: #BA7517;
  --card-bg: #FFFFFF;
  --border: rgba(44, 42, 40, 0.12);

  --shadow-soft: 0 4px 20px rgba(44, 42, 40, 0.06);
  --shadow-hover: 0 10px 30px rgba(44, 42, 40, 0.12);
  --radius-card: 16px;
  --radius-btn: 10px;
  --max-width: 1280px;
  --gutter: 24px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--orange-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange);
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

/* ---------- layout helpers ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 3rem 0;
}

.section + .section {
  padding-top: 1.5rem;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.section-title .icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
  flex-shrink: 0;
}

/* generic two-column split (3-up if asked) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.split > * {
  min-width: 0;
}

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

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.brand .icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
  flex-shrink: 0;
}

.brand .accent {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  position: relative;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a.active {
  color: var(--charcoal);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

@media (max-width: 700px) {
  .nav-inner {
    padding: 12px 16px;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
  .brand {
    font-size: 0.95rem;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 12px 22px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
  max-width: 100%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(216, 90, 48, 0.25);
}

.btn:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(216, 90, 48, 0.32);
}

.btn:active {
  transform: scale(0.97);
}

.btn .icon {
  width: 20px;
  height: 20px;
}

/* ---------- hero (home) ---------- */
.hero {
  padding: 2rem 0 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.hero-grid > * {
  min-width: 0;
}

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

/* video panel */
.video-panel {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--charcoal);
  min-height: 420px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  /* iOS Safari refuses to clip a <video> child with overflow:hidden + border-radius.
     The mask-image below forces Safari to actually composite the panel as a clipped layer. */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
          mask-image:        radial-gradient(white, black);
}

.video-panel video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  /* Belt-and-braces: round the video element itself so even if the parent's clip
     fails (looking at you, iOS Safari), the video frame is rounded on its own. */
  border-radius: var(--radius-card);
}

@media (max-width: 900px) {
  .video-panel {
    /* No aspect-ratio here: combined with min-height it forces Safari to widen
       the panel past the viewport to maintain 16:9 at the minimum height. */
    min-height: 0;
    height: 56.25vw;     /* 16:9 of viewport â€” proportional, never overflows */
    max-height: 320px;   /* but cap it so it doesn't dominate the page */
  }
}

.mute-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.mute-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

.mute-btn .icon {
  width: 22px;
  height: 22px;
}

.mute-btn .icon-unmuted { display: none; }
.mute-btn.is-unmuted .icon-muted { display: none; }
.mute-btn.is-unmuted .icon-unmuted { display: block; }

/* right panel (intro cards) */
.intro-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-panel-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.intro-panel-title .icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1100px) {
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.fact-card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center center;
  min-height: 100%;
}

.fact-card:nth-child(odd) { transform: rotate(-1.5deg); }
.fact-card:nth-child(even) { transform: rotate(1.5deg); }

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

.fact-card .num {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(216, 90, 48, 0.35);
}

.fact-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--orange-dark);
  margin: 0;
  line-height: 1.25;
}

.fact-card .divider {
  height: 1px;
  background: var(--orange);
  opacity: 0.45;
  border-radius: 1px;
  margin: 2px 0;
}

.fact-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--charcoal-soft);
}

/* ---------- people cards (Maurice & Karen) ---------- */
.person-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.person-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
}

.person-card.right:hover {
  transform: translateY(-4px) rotate(0.5deg);
}

.person-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 1.9vw, 1.6rem);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.person-title .icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.person-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: center;
}

.person-inner.mirrored {
  grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 600px) {
  .person-inner,
  .person-inner.mirrored {
    grid-template-columns: 1fr;
  }
}

.person-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--orange-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
}

.person-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.person-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.4;
}

.person-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

/* ---------- PCA panel (teal-accented) ---------- */
.pca-panel {
  background: var(--teal-soft);
  border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid rgba(29, 158, 117, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pca-panel:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 10px 30px rgba(29, 158, 117, 0.16);
}

.pca-panel .section-title .icon {
  color: var(--teal);
}

.pca-panel h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 1.9vw, 1.6rem);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.pca-panel h3 .icon {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.pca-panel p {
  color: var(--charcoal);
  font-size: 0.97rem;
  line-height: 1.55;
}

.pca-panel .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 600;
  margin-top: auto;
}

.pca-panel .learn-more:hover {
  color: #157A5A;
}

.pca-panel .learn-more .icon {
  width: 18px;
  height: 18px;
}

/* ---------- support panel ---------- */
.support-panel {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.support-panel h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 1.9vw, 1.6rem);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.support-panel h3 .icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--orange-soft);
  border-radius: 10px;
  color: var(--charcoal);
  transition: transform 0.2s ease, background 0.2s ease;
}

.support-list a:hover {
  background: #F8DED2;
  transform: translateY(-2px) rotate(-0.3deg);
  color: var(--charcoal);
}

.support-list .name {
  font-weight: 600;
  font-size: 0.97rem;
}

.support-list .meta {
  display: block;
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  font-weight: 400;
  margin-top: 2px;
}

.support-list .arrow {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ---------- footer ---------- */
.footer {
  margin-top: 4rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: 2.5rem 0 1.75rem;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.footer-brand .accent {
  color: var(--orange);
}

.footer-motifs {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--orange);
}

.footer-motifs .icon {
  width: 22px;
  height: 22px;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--cream);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-small {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.55);
  margin: 0;
}

/* ---------- about page ---------- */
.about-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.about-left,
.about-right {
  flex: 1 1 0;
  min-width: 0;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 901px) {
  .about-right > * {
    flex: 1 1 0;
    min-height: 0;
  }
}

.about-left {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-right-top,
.about-right-bottom {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .about-grid {
    flex-direction: column;
  }
}

.about-subsection {
  margin-top: 1.5rem;
}

.about-subsection h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
}

.about-subsection h3 .icon {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

/* ---------- playing cards (flip) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

.playing-card {
  position: relative;
  aspect-ratio: 2.5 / 3.5;
  perspective: 1200px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border-radius: 12px;
  outline: none;
}

.playing-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.5);
  border-radius: 12px;
}

.playing-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 12px;
}

.playing-card.flipped .playing-card-inner {
  transform: rotateY(180deg);
}

.playing-card-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.playing-card-back {
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(45deg, transparent 0 9px, var(--orange) 9px 11px),
    repeating-linear-gradient(-45deg, transparent 0 9px, var(--orange) 9px 11px);
  box-shadow:
    inset 0 0 0 3px var(--orange-dark),
    inset 0 0 0 6px var(--cream),
    inset 0 0 0 8px var(--orange-dark);
  display: grid;
  place-items: center;
  padding: 12%;
}

.playing-card-back .lock {
  width: 46%;
  height: auto;
  max-width: 70px;
  background: var(--cream);
  border-radius: 50%;
  padding: 14%;
  color: var(--gold);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  aspect-ratio: 1 / 1;
}

.playing-card.unlockable .playing-card-back .lock {
  color: var(--orange);
}

.tap-hint {
  position: absolute;
  bottom: 14%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-dark);
  pointer-events: none;
}

.playing-card-front {
  transform: rotateY(180deg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 14px;
  gap: 6px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--charcoal);
  overflow: auto;
  box-shadow: inset 0 0 0 2px var(--orange-soft);
}

.playing-card-front h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--orange-dark);
  margin: 0 0 4px;
  line-height: 1.2;
}

.playing-card-front .label {
  font-weight: 600;
  color: var(--orange-dark);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 6px;
}

.playing-card-front p {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--charcoal);
}

.playing-card.locked .playing-card-front {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--charcoal-soft);
  font-style: italic;
}

@keyframes nudge {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-1.5deg) translateY(-2px); }
  75% { transform: rotate(1.5deg) translateY(-2px); }
}

.playing-card.unlockable:not(.flipped) {
  animation: nudge 3.2s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-7px); }
  40%, 80% { transform: translateX(7px); }
}

.playing-card.shaking {
  animation: shake 0.5s ease-in-out;
}

.lock-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.lock-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--charcoal);
}

.playing-card.show-tooltip .lock-tooltip {
  opacity: 1;
}

/* ---------- video placeholder ---------- */
.video-placeholder {
  aspect-ratio: 16 / 9;
  border: 2px dashed var(--orange);
  background: linear-gradient(135deg, var(--orange-soft) 0%, var(--cream) 100%);
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--orange-dark);
}

.video-placeholder .play-circle {
  width: 64px;
  height: 64px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  box-shadow: 0 6px 20px rgba(216, 90, 48, 0.3);
}

.video-placeholder .play-circle .icon {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-placeholder .label {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ---------- coming soon (kept generic for future blank states) ---------- */
.coming-soon {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem var(--gutter);
}

.coming-soon .icon-large {
  width: 56px;
  height: 56px;
  color: var(--orange);
  margin: 0 auto 1rem;
}

.coming-soon h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.coming-soon p {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* ---------- pricing (book page) ---------- */
.pricing {
  display: grid;
  place-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter);
}

.pricing-card {
  width: 100%;
  max-width: 480px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
}

.pricing-card .pricing-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card .pricing-head .icon {
  width: 32px;
  height: 32px;
  color: var(--orange);
  flex-shrink: 0;
}

.pricing-card h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0;
  line-height: 1.1;
}

.pricing-card .pricing-sub {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-card .pricing-included {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  margin: 0;
}

.price-tag {
  background: var(--orange-soft);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-tag .icon {
  width: 26px;
  height: 26px;
  color: var(--orange);
  flex-shrink: 0;
}

.price-tag .price-figure {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 2.8rem);
  color: var(--orange);
  line-height: 1;
}

.price-tag .price-qualifier {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.3;
}

.btn--block {
  width: 100%;
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .fact-card:nth-child(odd),
  .fact-card:nth-child(even),
  .fact-card:hover,
  .person-card:hover,
  .pca-panel:hover,
  .support-list a:hover {
    transform: none !important;
  }
  .playing-card.unlockable:not(.flipped) {
    animation: none !important;
  }
}
