:root {
  color-scheme: dark;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", "Iowan Old Style", serif;

  /* --- Base layer: deep plum / chocolate --- */
  --bg: #15101a;
  --bg-deep: #0f0a10;

  /* --- Section surfaces (two alternating tones) --- */
  --surface-plum: linear-gradient(168deg, rgba(74, 50, 78, 0.5), rgba(44, 30, 48, 0.42));
  --surface-cocoa: linear-gradient(168deg, rgba(64, 46, 38, 0.52), rgba(40, 28, 26, 0.42));
  --surface-line: rgba(233, 208, 232, 0.1);
  --surface-line-warm: rgba(233, 196, 106, 0.16);

  /* --- Inner panel cards (lists, faq, steps) --- */
  --panel: rgba(30, 22, 30, 0.5);
  --panel-strong: rgba(38, 28, 38, 0.74);

  /* --- Ivory / warm text --- */
  --text: #f8efe3;
  --muted: #d9c8bd;
  --muted-2: #b09a99;

  /* --- Gold details --- */
  --gold: #e9c46a;
  --gold-bright: #ffe5a3;
  --gold-deep: #b98632;

  /* --- Wine / plum accent --- */
  --wine: #b25774;
  --wine-soft: rgba(178, 87, 116, 0.18);
  --wine-deep: #4f2236;
  --rose: #e0a394;

  --line: rgba(233, 196, 106, 0.22);
  --shadow: rgba(0, 0, 0, 0.4);
  --focus: #ffe5a3;
  --radius: 9px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 50% -2%, rgba(233, 196, 106, 0.18), transparent 30rem),
    radial-gradient(circle at 86% 14%, rgba(178, 87, 116, 0.14), transparent 22rem),
    radial-gradient(circle at 8% 52%, rgba(126, 84, 138, 0.14), transparent 24rem),
    linear-gradient(180deg, #1a1320 0%, #15101a 46%, #100b11 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.page-shell {
  width: 100%;
  min-height: 100vh;
}

.landing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 10px 18px 104px;
  text-align: center;
}

.footer {
  width: min(100%, 430px);
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   SECTION SYSTEM
   Hero is open & atmospheric; content sections become layered
   panels that bleed to the column edges and alternate tone.
   ============================================================ */
.section {
  position: relative;
  padding: 26px 0;
}

/* ---------- TOP BRAND ---------- */
.site-brand {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0;
}

.site-library-link {
  position: static;
  min-height: 44px;
  padding: 11px 2px 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration-color: rgba(233, 196, 106, 0.5);
  text-underline-offset: 3px;
}

.site-brand::before,
.site-brand::after {
  content: none;
}

.site-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  min-height: 30px;
  padding: 0;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(233, 196, 106, 0.22);
}

.site-brand p {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-shadow: 0 0 14px rgba(233, 196, 106, 0.18);
}

/* Paneled content sections */
.pain-section,
.product-section,
.example-section,
.bot-trust-section,
.about-section,
.questions-section,
.faq-section,
.final-section {
  margin: 0 -18px;
  padding: 28px 20px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  background: var(--surface-plum);
  box-shadow:
    0 18px 40px -24px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 247, 237, 0.04);
}

/* Alternate tone for rhythm */
.questions-section {
  background: var(--surface-cocoa);
  border-color: rgba(233, 196, 106, 0.1);
}

/* Gold top hairline on each panel for a refined edge */
.pain-section::before,
.product-section::before,
.example-section::before,
.bot-trust-section::before,
.about-section::before,
.questions-section::before,
.faq-section::before,
.final-section::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 196, 106, 0.35), transparent);
  pointer-events: none;
}

/* ---------- HERO ---------- */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 4px;
  text-align: left;
}

/* ---------- CUSTOMER TESTIMONIAL ---------- */
.testimonial-section {
  margin: 18px -4px 28px;
  padding: 20px 21px 21px;
  overflow: hidden;
  border: 1px solid rgba(215, 140, 175, 0.34);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(215, 140, 175, 0.16), transparent 14rem),
    linear-gradient(155deg, rgba(62, 37, 54, 0.94), rgba(30, 21, 31, 0.96));
  box-shadow:
    0 18px 38px -26px rgba(0, 0, 0, 0.78),
    inset 0 1px 0 rgba(255, 247, 237, 0.05);
}

.testimonial-section::after {
  content: "“";
  position: absolute;
  right: 15px;
  top: -18px;
  color: rgba(233, 196, 106, 0.11);
  font-family: var(--font-serif);
  font-size: 7.6rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-eyebrow {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.landing-testimonial {
  position: relative;
  z-index: 1;
  margin: 0;
}

.landing-testimonial blockquote {
  margin: 0;
  color: #f2e8df;
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 4.8vw, 1.3rem);
  font-weight: 600;
  line-height: 1.42;
}

.landing-testimonial figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: baseline;
  margin-top: 13px;
  color: var(--muted-2);
  font-size: 0.76rem;
}

.landing-testimonial figcaption strong {
  color: #edbed3;
  font-size: 0.82rem;
}

.landing-testimonial figcaption span::before {
  content: "·";
  margin-right: 5px;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 13px;
  padding: 6px 11px;
  border: 1px solid rgba(233, 196, 106, 0.32);
  border-radius: 999px;
  background: rgba(233, 196, 106, 0.09);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
}

h1 {
  max-width: 18ch;
  margin: 0 auto 14px;
  font-size: 2.05rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  font-size: 1.48rem;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 38ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-process {
  position: relative;
  max-width: 38ch;
  margin: 18px auto 0;
  padding-top: 17px;
  color: rgba(248, 239, 227, 0.94);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 229, 163, 0.72), transparent);
  box-shadow: 0 0 14px rgba(233, 196, 106, 0.2);
}

.hero-process strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.hero .eyebrow {
  margin-right: 0;
  margin-bottom: 10px;
  margin-left: 0;
}

.hero h1 {
  max-width: 13ch;
  margin-right: 0;
  margin-left: 0;
  font-size: 2.28rem;
  line-height: 1.04;
  text-align: left;
}

.hero-subtitle {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  font-size: 0.91rem;
  line-height: 1.52;
  text-align: left;
}

.hero-process {
  max-width: none;
  margin: 12px 0 0;
  padding-top: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: left;
}

.hero-process::before {
  content: none;
}

.hero-note,
.quiet-note {
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: 0.96rem;
}

.hero-note {
  font-size: 0.92rem;
}

.example-section {
  border-color: rgba(233, 196, 106, 0.24);
  background:
    radial-gradient(circle at 50% 12%, rgba(178, 87, 116, 0.14), transparent 18rem),
    linear-gradient(168deg, rgba(46, 31, 48, 0.82), rgba(28, 20, 30, 0.72));
}

.example-section .section-heading > p:last-child {
  max-width: 37ch;
  margin: 0 auto;
  font-size: 0.9rem;
}

.example-spread {
  margin: 23px 0 0;
}

.example-spread-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 830 / 556;
  object-fit: cover;
  border: 1px solid rgba(233, 196, 106, 0.32);
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(5, 3, 6, 0.32);
}

.example-card-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 152px;
  padding-inline: 5px;
}

.example-card-row::before {
  position: absolute;
  right: 4%;
  bottom: 9px;
  left: 4%;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(233, 196, 106, 0.19), transparent 70%);
  filter: blur(7px);
  content: "";
}

.example-card-row img {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(57px, 17vw, 69px);
  aspect-ratio: 2 / 3;
  margin-left: -7px;
  border: 1px solid rgba(255, 229, 163, 0.58);
  border-radius: 7px;
  object-fit: cover;
  background: var(--bg-deep);
  box-shadow: 0 13px 22px rgba(0, 0, 0, 0.5);
  transform: translateY(7px) rotate(-5deg);
}

.example-card-row img:first-child {
  margin-left: 0;
  transform: translateY(12px) rotate(-10deg);
}

.example-card-row img:nth-child(2) {
  transform: translateY(3px) rotate(-5deg);
}

.example-card-row img:nth-child(3) {
  z-index: 2;
  width: clamp(62px, 18vw, 74px);
  border-color: rgba(255, 229, 163, 0.9);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(233, 196, 106, 0.18);
  transform: translateY(-3px);
}

.example-card-row img:nth-child(4) {
  transform: translateY(3px) rotate(5deg);
}

.example-card-row img:nth-child(5) {
  transform: translateY(12px) rotate(10deg);
}

.example-spread figcaption {
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 0.7rem;
}

.example-position,
.clarity-summary {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(233, 196, 106, 0.2);
  border-radius: 12px;
  background: rgba(17, 11, 18, 0.54);
  text-align: left;
}

.example-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.example-position h3 {
  margin: 0 0 7px;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 600;
}

.example-position > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.clarity-summary {
  border-color: rgba(233, 196, 106, 0.38);
  background:
    linear-gradient(145deg, rgba(79, 34, 54, 0.34), rgba(22, 15, 23, 0.74)),
    var(--panel);
}

.clarity-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.clarity-summary dl div {
  display: grid;
  grid-template-columns: 83px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(233, 196, 106, 0.14);
}

.clarity-summary dl div:first-child {
  border-top: 0;
}

.clarity-summary dt {
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 750;
}

.clarity-summary dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.45;
}

.section-heading p {
  color: var(--muted);
}

.topic-intro {
  margin-bottom: 28px;
}

.topic-intro .eyebrow {
  margin-bottom: 24px;
}

.situation-grid {
  display: grid;
  gap: 10px;
}

.situation-card {
  position: relative;
  overflow: hidden;
  padding: 13px 14px 12px;
  text-align: left;
  border: 1px solid rgba(233, 196, 106, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.055), rgba(178, 87, 116, 0.06)),
    rgba(20, 13, 24, 0.66);
  box-shadow: 0 18px 34px -28px rgba(0, 0, 0, 0.88), inset 0 1px 0 rgba(255, 247, 237, 0.06);
}

.situation-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
}

.situation-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.situation-card > p:not(.situation-badge) {
  text-align: left;
}

.situation-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 5px 9px;
  border: 1px solid rgba(233, 196, 106, 0.28);
  border-radius: 999px;
  background: rgba(233, 196, 106, 0.07);
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.situation-card .situation-badge {
  margin: 0 auto 24px;
}

.situation-badge::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 13px rgba(233, 196, 106, 0.42);
}

.situation-note {
  margin: 10px 0 0;
  padding-top: 9px;
  border-top: 1px solid rgba(233, 196, 106, 0.13);
  color: rgba(255, 229, 163, 0.86);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: left;
}

.situation-card-choice {
  border-color: rgba(178, 87, 116, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.05), rgba(126, 84, 138, 0.08)),
    rgba(20, 13, 24, 0.66);
}

.situation-card-family {
  border-color: rgba(233, 196, 106, 0.2);
  background:
    linear-gradient(145deg, rgba(233, 196, 106, 0.06), rgba(255, 247, 237, 0.035)),
    rgba(20, 13, 24, 0.68);
}

.situation-card-career {
  border-color: rgba(255, 229, 163, 0.18);
  background:
    linear-gradient(145deg, rgba(126, 84, 138, 0.09), rgba(233, 196, 106, 0.045)),
    rgba(20, 13, 24, 0.68);
}

.situation-card-money {
  border-color: rgba(129, 171, 139, 0.24);
  background:
    linear-gradient(145deg, rgba(79, 125, 91, 0.09), rgba(233, 196, 106, 0.045)),
    rgba(20, 13, 24, 0.68);
}

.situation-card-purpose {
  border-color: rgba(178, 87, 116, 0.28);
  background:
    linear-gradient(145deg, rgba(178, 87, 116, 0.08), rgba(233, 196, 106, 0.045)),
    rgba(20, 13, 24, 0.68);
}

/* ---------- CARD SELECTION — recessed stage ---------- */
.card-section {
  margin: 0 -18px;
  padding: 30px 18px 86px;
  border: 1px solid rgba(233, 196, 106, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 78% 46% at 50% 30%, rgba(126, 84, 138, 0.26), transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 88%, rgba(233, 196, 106, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(14, 10, 16, 0.66), rgba(10, 7, 11, 0.8));
  box-shadow:
    inset 0 2px 30px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(0, 0, 0, 0.3),
    0 24px 50px -28px rgba(0, 0, 0, 0.8);
}

.card-section .section-heading h2 {
  color: var(--gold-bright);
}

.selection-hint {
  min-height: 26px;
  margin: 12px 0 10px;
  color: var(--rose);
  font-size: 0.96rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.selection-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cards-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin: 8px 0 20px;
}

/* Soft floor glow beneath the card row — the "pedestal" light */
.cards-grid::before {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 30px;
  height: 64px;
  background: radial-gradient(ellipse at 50% 50%, rgba(233, 196, 106, 0.12), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

/* ---- Per-card mood accents ---- */
.cards-grid .tarot-card:nth-child(1) {
  --card-glow: 233, 196, 106;   /* warm gold */
  --card-border: rgba(255, 229, 163, 0.9);
}

.cards-grid .tarot-card:nth-child(2) {
  --card-glow: 199, 120, 152;   /* muted plum / rose */
  --card-border: rgba(224, 163, 188, 0.92);
}

.cards-grid .tarot-card:nth-child(3) {
  --card-glow: 180, 198, 188;   /* moonlit cool-gold */
  --card-border: rgba(214, 224, 198, 0.92);
}

.cards-grid .tarot-card:nth-child(4) {
  --card-glow: 150, 186, 220;   /* star blue */
  --card-border: rgba(190, 215, 238, 0.92);
}

.cards-grid .tarot-card:nth-child(5) {
  --card-glow: 215, 154, 92;    /* amber strength */
  --card-border: rgba(238, 190, 136, 0.92);
}

.cards-grid .tarot-card:nth-child(6) {
  --card-glow: 198, 176, 120;   /* balanced antique gold */
  --card-border: rgba(232, 207, 154, 0.92);
}

.tarot-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 220px;
  padding: 6px 6px 6px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: opacity 200ms ease, transform 200ms ease;
}

/* Individual pedestal under each card */
.tarot-card::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 44px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--card-glow), 0.32), transparent 72%);
  filter: blur(5px);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.card-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  min-height: 150px;
  border-radius: var(--radius);
  perspective: 900px;
  transform: translateY(0);
  transition: transform 200ms ease, filter 200ms ease;
}

.card-frame::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: calc(var(--radius) + 3px);
  background: rgba(var(--card-glow), 0);
  filter: blur(11px);
  transition: background 200ms ease, filter 200ms ease;
}

.card-inner {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  transition: transform 440ms cubic-bezier(0.2, 0.72, 0.22, 1), box-shadow 200ms ease;
}

.card-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(233, 196, 106, 0.4);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  backface-visibility: hidden;
  background: #1a1018;
}

.card-front {
  transform: rotateY(180deg);
}

.card-label {
  display: block;
  min-height: 24px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(-2px);
  visibility: hidden;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

/* Calmer non-selected cards once the full three-card choice is made */
.cards-grid.is-complete .tarot-card:not(.is-selected) {
  display: none;
}

.cards-grid.is-complete .tarot-card.is-selected {
  min-height: 196px;
}

.tarot-card.is-locked,
.tarot-card:disabled:not(.is-selected) {
  cursor: default;
}

/* Hover / focus */
.tarot-card:hover .card-frame,
.tarot-card:focus-visible .card-frame {
  filter: brightness(1.08);
  transform: translateY(-5px);
}

.tarot-card:hover::after,
.tarot-card:focus-visible::after {
  opacity: 1;
}

.tarot-card:hover .card-frame::after,
.tarot-card:focus-visible .card-frame::after {
  background: rgba(var(--card-glow), 0.22);
}

.tarot-card:focus-visible .card-inner {
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.5),
    0 0 0 3px rgba(255, 229, 163, 0.5);
}

.tarot-card:active .card-frame {
  transform: translateY(1px) scale(0.99);
}

.tarot-card.is-locked .card-frame,
.tarot-card:disabled:not(.is-selected) .card-frame {
  filter: brightness(0.78);
  transform: none;
}

.tarot-card.is-locked::after,
.tarot-card:disabled:not(.is-selected)::after {
  opacity: 0;
}

.tarot-card.is-locked .card-frame::after,
.tarot-card:disabled:not(.is-selected) .card-frame::after {
  background: rgba(var(--card-glow), 0);
}

/* Selected — clearly chosen, lifted, glowing in its mood color */
.tarot-card.is-selected {
  transform: translateY(-2px);
}

.tarot-card.is-selected .card-frame {
  filter: brightness(1.1);
  transform: translateY(-9px);
}

.tarot-card.is-selected::after {
  opacity: 1;
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--card-glow), 0.5), transparent 72%);
}

.tarot-card.is-selected .card-frame::after {
  background: rgba(var(--card-glow), 0.5);
  filter: blur(15px);
}

.tarot-card.is-selected .card-inner {
  transform: rotateY(180deg);
  box-shadow:
    0 26px 40px rgba(0, 0, 0, 0.55),
    0 0 0 3px rgba(var(--card-glow), 0.34),
    0 0 40px rgba(var(--card-glow), 0.4);
}

.tarot-card.is-selected .card-image {
  border-color: var(--card-border);
}

.tarot-card.is-selected .card-label {
  color: var(--gold-bright);
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

/* ---------- CONFIRMATION ---------- */
.confirmation {
  position: relative;
  z-index: 1;
  margin: 4px 0 12px;
  padding: 18px 4px 0;
}

.insight-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: var(--gold);
}

.insight-divider::before,
.insight-divider::after {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(233, 196, 106, 0.58));
  content: "";
}

.insight-divider::after {
  background: linear-gradient(90deg, rgba(233, 196, 106, 0.58), transparent);
}

.insight-divider span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(233, 196, 106, 0.75);
}

.confirmation-title {
  margin: 24px 0 0;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 8vw, 2.25rem);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

.confirmation-copy {
  max-width: 31ch;
  margin: 12px auto 0;
  color: #ded1ca;
  font-size: 0.95rem;
  line-height: 1.55;
}

.change-cards-button {
  margin-top: 14px;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  color: var(--gold-bright);
  font: inherit;
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.change-cards-button:hover {
  color: #fff0bf;
}

.example-actions {
  margin-top: 18px;
}

.cta-duration {
  margin: 10px 0 0;
  color: var(--muted-2);
  font-size: 0.85rem;
}

/* ---------- PRIMARY CTA ---------- */
.primary-cta {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 60px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 229, 163, 0.55);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffdd8a 0%, #ecb858 48%, #c8913d 100%);
  color: #20120c;
  cursor: pointer;
  font-weight: 850;
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow:
    0 18px 32px -10px rgba(200, 145, 61, 0.5),
    0 6px 16px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  filter: brightness(1.05);
  box-shadow:
    0 22px 38px -10px rgba(200, 145, 61, 0.6),
    0 6px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.primary-cta:active {
  transform: translateY(1px);
}

.primary-cta.is-disabled {
  border-color: rgba(255, 247, 237, 0.12);
  background: linear-gradient(180deg, rgba(58, 46, 52, 0.95), rgba(44, 34, 40, 0.95));
  color: #ab9890;
  cursor: default;
  box-shadow: inset 0 0 0 1px rgba(255, 247, 237, 0.05);
}

.cta-main,
.cta-final {
  margin-top: 4px;
}

.final-cta-note {
  margin: 12px 0 0;
  color: rgba(247, 235, 224, 0.76);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

.section-jump {
  padding: 10px 0 12px;
}

.section-jump-cta {
  display: block;
  width: 100%;
  text-decoration: none;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
}

.hero-cta {
  min-height: 56px;
}

.hero-price-card {
  display: grid;
  gap: 4px;
  margin: 20px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(233, 196, 106, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(79, 34, 54, 0.54), rgba(27, 19, 29, 0.72)),
    var(--panel);
  box-shadow:
    0 18px 36px -24px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 247, 237, 0.06);
  text-align: left;
}

.hero-price-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 10px;
}

.hero-price-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.hero-reading-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin: 0;
  padding: 3px 7px;
  border: 1px solid rgba(233, 196, 106, 0.34);
  border-radius: 999px;
  background: rgba(233, 196, 106, 0.08);
  color: #e8d8b2;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-reading-count img {
  display: block;
  width: 13px;
  height: 13px;
}

.hero-reading-count-short {
  display: none;
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero-price-row strong {
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-price-row span,
.hero-price-card > p:last-child {
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-price-card > p:last-child {
  margin: 2px 0 0;
}

.hero-price-card > p:last-child strong {
  color: var(--text);
}

.hero-reassurance {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
}

.hero-price-card {
  width: 100%;
  margin-top: 14px;
  padding: 11px 14px;
}

.hero-price-kicker {
  font-size: 0.66rem;
}

.hero-price-row strong {
  font-size: 1.72rem;
}

.hero-actions {
  gap: 8px;
  margin-top: 14px;
}

/* ---------- LISTS ---------- */
.benefit-list,
.question-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li,
.question-list li {
  position: relative;
  padding: 14px 14px 14px 36px;
  border: 1px solid rgba(255, 247, 237, 0.07);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--muted);
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.6);
  text-align: left;
  line-height: 1.45;
}

.benefit-list li::before,
.question-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(233, 196, 106, 0.5);
}

.soft-list li::before {
  background: var(--wine);
  box-shadow: 0 0 12px rgba(178, 87, 116, 0.45);
}

/* The complete paid product — gold-highlighted block */
.product-section {
  border-color: rgba(233, 196, 106, 0.26);
  background:
    linear-gradient(168deg, rgba(233, 196, 106, 0.1), transparent 42%),
    var(--surface-cocoa);
}

.product-section .eyebrow {
  border-color: rgba(233, 196, 106, 0.45);
  background: rgba(233, 196, 106, 0.14);
}

.product-section .benefit-list li {
  border-color: rgba(233, 196, 106, 0.16);
  background: rgba(34, 25, 20, 0.62);
}

.product-section .benefit-list strong {
  color: var(--text);
  font-weight: 700;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 10px;
}

.payment-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 1px 3px;
  border: 1px solid rgba(255, 247, 237, 0.28);
  border-radius: 7px;
  background: rgba(255, 247, 237, 0.94);
}

.payment-method img {
  display: block;
  width: auto;
  height: 22px;
}

.payment-trust-panel {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(233, 196, 106, 0.28);
  border-radius: 12px;
  background: rgba(19, 13, 18, 0.56);
  text-align: left;
}

.payment-trust-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.payment-trust-panel > p + p {
  margin-top: 7px;
}

.payment-trust-panel strong {
  color: var(--text);
}

.payment-trust-panel .payment-methods {
  padding-top: 12px;
  border-top: 1px solid rgba(233, 196, 106, 0.14);
  color: var(--muted-2);
  font-size: 0.74rem;
}

.quiet-note {
  margin-top: 16px;
}

.product-section .quiet-note,
.questions-section .quiet-note {
  text-align: left;
}

.important-note {
  margin-top: 16px;
  padding: 14px 15px;
  border: 1px solid rgba(178, 87, 116, 0.3);
  border-radius: var(--radius);
  background: var(--wine-soft);
  color: var(--muted);
}

/* "Not an automatic reading" — quieter trust strip */
.bot-trust-section {
  padding: 24px 20px;
  background:
    linear-gradient(168deg, rgba(126, 84, 138, 0.16), transparent 60%),
    rgba(26, 18, 26, 0.5);
  text-align: center;
}

.bot-trust-section .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- ABOUT / LEYA PORTRAIT ---------- */
.about-section {
  padding-top: 22px;
  padding-bottom: 20px;
}

.about-layout {
  display: grid;
  gap: 12px;
}

.lea-portrait-card {
  position: relative;
  width: min(100%, 204px);
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(233, 196, 106, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(233, 196, 106, 0.16), rgba(178, 87, 116, 0.08) 50%, transparent 70%),
    rgba(34, 24, 32, 0.9);
  box-shadow:
    0 24px 44px -20px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(233, 196, 106, 0.12);
}

.lea-portrait-card::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: 0;
  border: 1px solid rgba(255, 229, 163, 0.24);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.lea-portrait {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 250px;
  border: 1px solid rgba(255, 229, 163, 0.28);
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center top;
  box-shadow: inset 0 0 0 1px rgba(255, 247, 237, 0.08);
}

.about-copy {
  margin-top: 4px;
}

.about-copy p {
  margin-bottom: 9px;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.about-trust-card {
  position: relative;
  min-width: 0;
  padding: 31px 7px 10px;
  border: 1px solid rgba(233, 196, 106, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(233, 196, 106, 0.16), transparent 54%),
    linear-gradient(180deg, rgba(255, 247, 237, 0.055), rgba(178, 87, 116, 0.04)),
    rgba(20, 13, 24, 0.58);
  text-align: center;
  box-shadow:
    0 14px 24px -18px rgba(0, 0, 0, 0.78),
    inset 0 1px 0 rgba(255, 247, 237, 0.05);
}

.about-trust-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 16px rgba(233, 196, 106, 0.45);
  transform: translateX(-50%);
}

.about-trust-card h3 {
  margin: 0 auto 4px;
  color: var(--gold-bright);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-trust-card p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.35;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-list details {
  border: 1px solid rgba(255, 247, 237, 0.08);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--muted);
  overflow: hidden;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease;
}

.faq-list details[open] {
  border-color: rgba(233, 196, 106, 0.28);
  background: rgba(34, 24, 30, 0.7);
}

.faq-list summary {
  cursor: pointer;
  padding: 15px 14px;
  color: var(--text);
  font-weight: 800;
  text-align: left;
}

.faq-list summary::marker {
  color: var(--gold);
}

.faq-list p {
  margin: 0;
  padding: 0 14px 15px;
  color: var(--muted);
}

/* ---------- FINAL CTA — wine/gold closer ---------- */
.final-section {
  border-color: rgba(233, 196, 106, 0.3);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(233, 196, 106, 0.14), transparent 64%),
    linear-gradient(165deg, rgba(79, 34, 54, 0.66), rgba(38, 24, 38, 0.6));
  box-shadow:
    0 22px 46px -22px rgba(0, 0, 0, 0.75),
    0 0 32px rgba(178, 87, 116, 0.12),
    inset 0 1px 0 rgba(255, 247, 237, 0.05);
}

.final-section .section-heading h2 {
  color: var(--gold-bright);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 8px 18px 132px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-disclaimer {
  max-width: 42ch;
  margin: 0 auto 12px;
  padding: 13px 15px;
  border: 1px solid rgba(233, 196, 106, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 247, 237, 0.035);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer p {
  margin-bottom: 10px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin: 12px 0;
}

.footer-legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 15px;
  border: 1px solid rgba(233, 196, 106, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  border-color: rgba(233, 196, 106, 0.38);
  color: var(--gold-bright);
}

.footer-legal {
  padding-bottom: 52px;
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  display: grid;
  gap: 14px;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 20px 18px 34px;
  text-align: center;
}

.legal-back {
  width: fit-content;
  margin: 0 auto;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-back:hover,
.legal-back:focus-visible {
  text-decoration: underline;
}

.legal-hero,
.legal-section {
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  background: var(--surface-plum);
  box-shadow:
    0 18px 40px -24px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 247, 237, 0.04);
}

.legal-hero {
  padding: 28px 18px 22px;
}

.legal-section {
  padding: 20px 18px;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 7vw, 2.25rem);
}

.legal-page h2 {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 1.34rem;
}

.legal-page h3 {
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 1rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  text-align: center;
}

.legal-page p:last-child {
  margin-bottom: 0;
}

.legal-page ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 0;
  list-style-position: inside;
}

.legal-meta {
  color: var(--muted-2) !important;
  font-size: 0.85rem;
  font-weight: 800;
}

/* ---------- STICKY CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 10px 18px max(11px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(16, 11, 17, 0) 0%, rgba(16, 11, 17, 0.92) 34%, #100b11 100%);
  border-top: 1px solid rgba(233, 196, 106, 0.16);
  box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.sticky-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 196, 106, 0.5), transparent);
  pointer-events: none;
}

.sticky-cta-note {
  display: none;
  width: min(100%, 394px);
  margin: 0 auto 8px;
  color: var(--muted-2);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.sticky-cta-button {
  display: block;
  max-width: 394px;
  min-height: 52px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  body {
    background:
      radial-gradient(circle at 50% -2%, rgba(233, 196, 106, 0.16), transparent 40rem),
      radial-gradient(circle at 84% 12%, rgba(178, 87, 116, 0.1), transparent 28rem),
      linear-gradient(90deg, #0e0a10 0%, #1a1320 50%, #0e0a10 100%);
    background-attachment: fixed;
  }

  .page-shell {
    padding: 0 0 18px;
  }

  .landing {
    border-right: 1px solid rgba(255, 247, 237, 0.06);
    border-left: 1px solid rgba(255, 247, 237, 0.06);
    background: rgba(18, 13, 19, 0.55);
  }

  .footer {
    border-right: 1px solid rgba(255, 247, 237, 0.06);
    border-left: 1px solid rgba(255, 247, 237, 0.06);
    background: rgba(18, 13, 19, 0.55);
  }
}

@media (max-width: 374px) {
  .landing {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-reading-count-full {
    display: none;
  }

  .hero-reading-count-short {
    display: inline;
  }

  .pain-section,
  .product-section,
  .example-section,
  .bot-trust-section,
  .about-section,
  .questions-section,
  .faq-section,
  .final-section {
    margin: 0 -14px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .card-section {
    margin: 0 -14px;
  }

  .cards-grid {
    gap: 9px;
  }

  .tarot-card {
    min-height: 212px;
  }

  .card-frame {
    min-height: 148px;
  }
}

/* ============================================================
   REDUCED MOTION
   Respect users who ask for less animation: drop the card flip
   transition, glow tweens and smooth scrolling.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.footer-cookie-link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  padding: 8px 4px;
  background: transparent;
  color: #d8c3b8;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
  color: #ffe5a3;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 40;
  width: min(calc(100% - 24px), 430px);
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-consent.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent-panel {
  padding: 20px;
  border: 1px solid #e8ded0;
  border-radius: 20px;
  background: #fffaf5;
  box-shadow: 0 20px 55px rgba(15, 10, 16, 0.32);
  color: #2b2430;
  text-align: left;
}

.cookie-consent h2 {
  margin: 0;
  color: #29222e;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cookie-consent p {
  margin: 10px 0 0;
  color: #756b7e;
  font-size: 0.86rem;
  line-height: 1.55;
}

.cookie-consent-policy {
  color: #7a5520;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-consent-policy:hover,
.cookie-consent-policy:focus-visible {
  color: #4e3514;
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.cookie-consent-actions button {
  min-height: 48px;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.cookie-consent-primary {
  border: 1px solid #d0a347;
  background: #e9bd5f;
  color: #2b210f;
  box-shadow: 0 10px 22px rgba(185, 134, 44, 0.24);
}

.cookie-consent-primary:hover {
  background: #f0c86f;
  border-color: #c99738;
}

.cookie-consent-secondary {
  border: 1px solid #d8d0da;
  background: #fffdfb;
  color: #2b2430;
}

.cookie-consent-secondary:hover {
  border-color: #b9aebd;
  background: #f8f3f0;
}

.cookie-consent-actions button:active {
  transform: translateY(1px);
}

.cookie-consent-actions button:focus-visible,
.cookie-consent-policy:focus-visible {
  outline: 3px solid rgba(185, 134, 50, 0.36);
  outline-offset: 3px;
}

@media (max-width: 359px) {
  .cookie-consent-panel {
    padding: 18px 16px 16px;
  }
}
