  :root {
    --cream: #fff8ec;
    --paper: #fffefb;
    --surface: #fff1d9;
    --surface-raised: #ffffff;
    --ink: #3a2416;
    --ink-dim: #7a5c42;
    --gold: #d99a2b;
    --gold-bright: #f0ad2c;
    --magenta: #c23a6b;
    --magenta-bright: #e0507f;
    --teal: #1f8a83;
    --line: rgba(217, 154, 43, 0.28);
    --shadow: rgba(150, 90, 20, 0.18);
    color-scheme: light;
  }

  * { box-sizing: border-box; }

  html, body { margin: 0; padding: 0; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 15% 0%, rgba(240, 173, 44, 0.16), transparent 60%),
      radial-gradient(ellipse 50% 40% at 90% 10%, rgba(194, 58, 107, 0.1), transparent 55%),
      radial-gradient(ellipse 70% 50% at 50% 100%, rgba(31, 138, 131, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  h1, h2, h3, .display {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    color: var(--ink);
    text-wrap: balance;
    margin: 0;
  }

  .eyebrow {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--magenta);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
  }

  .eyebrow::before, .eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.8;
  }

  a { color: var(--magenta); }

  img { max-width: 100%; }

  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding-inline: clamp(20px, 5vw, 48px);
    position: relative;
    z-index: 1;
  }

  /* ---- Nav ---- */
  nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 12, 10, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gold);
  }
  nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.7rem;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .brand {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-bright);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .brand img.logo-mark { height: 64px; width: auto; display: block; }
  .brand-text { display: flex; flex-direction: column; gap: 0.15rem; line-height: 1.1; }
  .brand-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
  }
  footer .logo-mark { height: 96px; }
  nav ul {
    list-style: none;
    display: flex;
    gap: clamp(1rem, 2.5vw, 2.1rem);
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
  }
  nav ul a {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.25s;
  }
  nav ul a:hover { color: var(--gold-bright); }

  /* ---- Hero ---- */
  #hero {
    padding-block: clamp(3rem, 8vw, 5.5rem) clamp(3rem, 7vw, 5rem);
  }
  #hero .wrap {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
    text-align: left;
  }
  .hero-copy { flex: 1 1 55%; min-width: 0; }
  .hero-visual {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
  }
  .hero-visual img {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
  }
  .hero-glyph {
    width: 96px;
    height: 96px;
    margin: 0 0 1.4rem;
    position: relative;
  }
  .hero-glyph img { width: 100%; height: 100%; object-fit: contain; }
  h1.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: 0.01em;
  }
  h1.hero-title em {
    font-style: italic;
    color: var(--magenta);
  }
  .hero-sub {
    max-width: 560px;
    margin: 1.3rem 0 0;
    color: var(--ink-dim);
    font-style: italic;
    font-size: 1.18rem;
  }
  .hero-cta {
    margin-top: 2.4rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  @media (max-width: 820px) {
    #hero .wrap { flex-direction: column; text-align: center; }
    .hero-glyph { margin-inline: auto; }
    .hero-sub { margin-inline: auto; }
    .hero-cta { justify-content: center; }
  }
  .btn {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.95rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    border: 1px solid var(--gold);
  }
  .btn-primary {
    background: linear-gradient(180deg, var(--magenta-bright), var(--magenta));
    border-color: var(--magenta);
    color: #fff8ec;
    font-weight: 700;
    box-shadow: 0 10px 30px -12px rgba(194, 58, 107, 0.5);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(194, 58, 107, 0.6); }
  .btn-outline {
    background: var(--surface-raised);
    color: var(--ink);
  }
  .btn-outline:hover { background: rgba(217,154,43,0.12); transform: translateY(-2px); }

  .hero-note {
    margin-top: 1.6rem;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
  }

  /* ---- Section shell ---- */
  section { padding-block: clamp(3.5rem, 8vw, 6rem); position: relative; z-index: 1; }
  .section-head { text-align: center; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
  .section-title { font-size: clamp(2rem, 4.5vw, 2.9rem); margin-top: 0.9rem; }
  .section-sub {
    max-width: 620px;
    margin: 0.9rem auto 0;
    color: var(--ink-dim);
    font-size: 1.05rem;
  }
  .divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
    margin: 0;
  }

  /* ---- How it works ---- */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
  }
  .step {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2rem 1.7rem;
    position: relative;
    box-shadow: 0 12px 30px -20px var(--shadow);
  }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: var(--magenta);
    opacity: 0.7;
    line-height: 1;
    font-style: italic;
  }
  .step h3 { font-size: 1.35rem; margin-top: 0.6rem; }
  .step p { color: var(--ink-dim); font-size: 0.98rem; margin-top: 0.5rem; }

  /* ---- Card explorer (full deck grid) ---- */
  .arcana-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: clamp(0.9rem, 2vw, 1.4rem);
  }

  .tarot-card {
    aspect-ratio: 5 / 8.6;
    perspective: 1400px;
    cursor: pointer;
  }
  .tarot-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(.22,.9,.32,1.1);
    transform-style: preserve-3d;
  }
  .tarot-card.flipped .tarot-card-inner { transform: rotateY(180deg); }
  .tarot-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 10px;
    border: 1px solid var(--gold);
    box-shadow: 0 14px 30px -16px var(--shadow), inset 0 0 0 1px rgba(217,154,43,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .tarot-back {
    background:
      repeating-linear-gradient(45deg, rgba(255,255,255,0.14) 0, rgba(255,255,255,0.14) 2px, transparent 2px, transparent 14px),
      linear-gradient(160deg, var(--magenta-bright), var(--gold-bright) 70%);
    display: grid;
    place-items: center;
  }
  .tarot-back .sigil { width: 42%; opacity: 0.95; }
  .tarot-back .sigil svg { width: 100%; height: auto; stroke: #fff8ec; }
  .tarot-front {
    transform: rotateY(180deg);
    background: #fff;
  }
  .tarot-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .tarot-front .tf-name {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    text-align: center;
    font-style: italic;
    color: #fff8ec;
    background: linear-gradient(0deg, rgba(58,36,22,0.88), transparent);
    padding: 1.6rem 0.3rem 0.4rem;
  }
  .tarot-card-label {
    text-align: center;
    margin-top: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-dim);
  }

  .tap-hint {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    text-align: center;
    margin-bottom: 1.8rem;
  }

  /* ---- Card detail modal ---- */
  .card-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(58, 36, 22, 0.55);
    backdrop-filter: blur(3px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .card-modal-overlay.show { display: flex; }
  .card-modal {
    background: var(--surface-raised);
    border: 1px solid var(--gold);
    border-radius: 14px;
    max-width: 760px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: clamp(1.6rem, 4vw, 2.6rem);
    position: relative;
    display: grid;
    grid-template-columns: minmax(160px, 220px) 1fr;
    gap: clamp(1.4rem, 4vw, 2.2rem);
  }
  @media (max-width: 620px) { .card-modal { grid-template-columns: 1fr; } }
  .card-modal img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: 0 16px 34px -16px var(--shadow);
  }
  .card-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink-dim);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
  }
  .card-modal-close:hover { border-color: var(--gold); color: var(--magenta); }
  .card-modal h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
  }
  .card-modal .card-number {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.1em;
  }
  .keyword-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.9rem 0 1.1rem;
  }
  .keyword-chip {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 0.32rem 0.75rem;
    color: var(--teal);
    background: var(--surface-raised);
  }
  .meaning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }
  @media (max-width: 480px) { .meaning-grid { grid-template-columns: 1fr; } }
  .meaning-box {
    border-left: 3px solid var(--gold);
    padding-left: 0.9rem;
  }
  .meaning-box.reversed { border-left-color: var(--magenta); }
  .meaning-box .mb-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
    display: block;
  }
  .meaning-box.reversed .mb-label { color: var(--magenta); }
  .meaning-box p { font-size: 0.92rem; color: var(--ink-dim); margin: 0; }
  .card-desc { color: var(--ink-dim); margin-top: 1rem; font-size: 0.96rem; }

  /* ---- Spreads / services ---- */
  .spreads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.7rem;
  }
  .spread-card {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: border-color 0.25s, transform 0.25s;
    box-shadow: 0 12px 30px -20px var(--shadow);
  }
  .spread-card:hover { border-color: var(--gold); transform: translateY(-4px); }
  .spread-icon { width: 44px; height: 44px; color: var(--magenta); }
  .spread-icon svg { width: 100%; height: 100%; }
  .spread-card h3 { font-size: 1.6rem; }
  .spread-card .price {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.06em;
  }
  .spread-card p { color: var(--ink-dim); font-size: 0.97rem; margin: 0; flex: 1; }
  .spread-card .meta {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
  }

  /* ---- About ---- */
  #about .wrap {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  @media (max-width: 760px) { #about .wrap { grid-template-columns: 1fr; } }
  .reader-frame {
    aspect-ratio: 4/5;
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 10px;
    position: relative;
  }
  .reader-frame::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    pointer-events: none;
  }
  .reader-frame-inner {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background:
      radial-gradient(circle at 50% 30%, rgba(240,173,44,0.25), transparent 60%),
      linear-gradient(165deg, #fffdf7, var(--surface));
    display: grid;
    place-items: center;
    color: var(--gold);
    padding: 12%;
  }
  .reader-frame-inner img { width: 70%; height: auto; opacity: 0.95; }
  #about h2 { font-size: clamp(2rem, 4vw, 2.7rem); }
  #about p { color: var(--ink-dim); margin-top: 1rem; }
  .credentials {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
  }
  .credential { display: flex; align-items: center; gap: 0.6rem; }
  .credential svg { width: 22px; height: 22px; color: var(--magenta); flex-shrink: 0; }
  .credential span { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim); }

  /* ---- Testimonials ---- */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.6rem;
  }
  .testimonial {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.9rem;
    position: relative;
    box-shadow: 0 12px 30px -20px var(--shadow);
  }
  .testimonial::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    color: var(--gold);
    opacity: 0.6;
    line-height: 1;
    display: block;
    margin-bottom: -0.6rem;
  }
  .testimonial p { color: var(--ink); font-style: italic; font-size: 1.02rem; }
  .testimonial .who {
    margin-top: 0.9rem;
    font-family: 'Cinzel', serif;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--magenta);
  }

  /* ---- FAQ ---- */
  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-item .faq-summary {
    list-style: none;
    cursor: pointer;
    padding: 1.3rem 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--ink);
    background: none;
    border: none;
    text-align: left;
  }
  .faq-item .faq-summary .plus {
    font-family: 'Cinzel', serif;
    color: var(--magenta);
    font-size: 1.2rem;
    transition: transform 0.25s;
    flex-shrink: 0;
  }
  .faq-item[open] summary .plus { transform: rotate(45deg); }
  .faq-item .faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
  }
  .faq-item[open] .faq-body { grid-template-rows: 1fr; }
  .faq-item .faq-body-inner { overflow: hidden; }
  .faq-item p { color: var(--ink-dim); padding-bottom: 1.3rem; margin: 0; font-size: 0.98rem; max-width: 640px; }

  /* ---- CTA / contact ---- */
  #book {
    text-align: center;
  }
  .book-panel {
    background: radial-gradient(circle at 50% 0%, rgba(240,173,44,0.18), transparent 60%), var(--surface-raised);
    border: 1px solid var(--gold);
    border-radius: 14px;
    padding: clamp(2.6rem, 6vw, 4rem);
  }
  .book-panel h2 { font-size: clamp(2.1rem, 4.5vw, 3rem); }
  .book-panel p.lead { color: var(--ink-dim); max-width: 560px; margin: 1rem auto 0; }
  .book-cta { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ---- Footer ---- */
  footer {
    background: #17110c;
    border-top: 1px solid var(--gold);
    padding-block: 2.6rem;
  }
  footer .wrap {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 5vw, 3rem);
    text-align: left;
  }
  footer .brand { flex: 0 0 auto; margin-bottom: 0; }
  footer .foot-text {
    flex: 1 1 auto;
    padding-left: clamp(1.5rem, 5vw, 3rem);
    border-left: 1px solid rgba(217, 154, 43, 0.3);
  }
  footer .foot-links { display: flex; gap: 1.4rem 2rem; justify-content: space-between; margin-bottom: 0.8rem; flex-wrap: wrap; }
  footer .foot-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
  }
  footer .foot-links a:hover { color: var(--gold-bright); }
  footer .copyright { color: var(--gold); font-size: 0.8rem; font-family: 'Cinzel', serif; letter-spacing: 0.04em; }
  @media (max-width: 640px) {
    footer .wrap { flex-direction: column; text-align: center; }
    footer .foot-text { border-left: none; padding-left: 0; }
    footer .foot-links { justify-content: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
  }
