:root {
      --void: #0a050f;
      --surface: #170d22;
      --surface-2: #241535;
      --wine: #56112c;
      --wine-bright: #8a1f49;
      --gold: #b38b47;
      --gold-bright: #f0cf8e;
      --cream: #f4edd9;
      --muted: #8e7d99;
      --line: rgba(179, 139, 71, 0.22);
      --glow: rgba(240, 207, 142, 0.05);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--void);
      color: var(--cream);
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
    }

    /* Interactive cursor glow */
    .cursor-glow {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      z-index: 1;
      background: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(86, 17, 44, 0.2), transparent 80%),
        radial-gradient(circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(179, 139, 71, 0.06), transparent 80%);
    }

    h1,
    h2,
    h3,
    .display-font {
      font-family: 'Cinzel', serif;
      letter-spacing: 0.06em;
      font-weight: 700;
      color: var(--gold-bright);
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .gold-text-gradient {
      background: linear-gradient(135deg, var(--gold-bright) 20%, var(--gold) 50%, var(--gold-bright) 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .eyebrow {
      font-family: 'Jost', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.35em;
      font-size: 11px;
      font-weight: 600;
      color: var(--gold);
      display: block;
      margin-bottom: 12px;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Background elements */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 10%, rgba(86, 17, 44, 0.4), transparent 50%),
        radial-gradient(circle at 90% 25%, rgba(179, 139, 71, 0.08), transparent 45%),
        radial-gradient(circle at 10% 75%, rgba(86, 17, 44, 0.25), transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    .grain {
      position: fixed;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      opacity: 0.04;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    .embers {
      position: fixed;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      overflow: hidden;
    }

    .ember {
      position: absolute;
      bottom: -20px;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--gold-bright);
      box-shadow: 0 0 10px 3px rgba(240, 207, 142, 0.5);
      animation: rise linear infinite;
      opacity: 0;
    }

    @keyframes rise {
      0% {
        transform: translateY(0) translateX(0) scale(0.8);
        opacity: 0;
      }

      10% {
        opacity: 0.8;
      }

      90% {
        opacity: 0.8;
      }

      100% {
        transform: translateY(-110vh) translateX(30px) scale(1.2);
        opacity: 0;
      }
    }

    section {
      position: relative;
      z-index: 3;
      padding: 100px 6vw;
    }

    /* Buttons */
    .btn {
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 3px;
      display: inline-block;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      cursor: pointer;
      border: none;
      text-align: center;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--wine-bright), var(--wine));
      color: var(--cream);
      box-shadow: 0 4px 20px rgba(86, 17, 44, 0.4);
      border: 1px solid rgba(240, 207, 142, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(138, 31, 73, 0.6);
      border-color: var(--gold-bright);
    }

    .btn-outline {
      border: 1px solid var(--gold);
      color: var(--gold-bright);
      background: rgba(10, 5, 15, 0.4);
      backdrop-filter: blur(5px);
    }

    .btn-outline:hover {
      transform: translateY(-3px);
      background: rgba(179, 139, 71, 0.15);
      border-color: var(--gold-bright);
      box-shadow: 0 5px 15px rgba(179, 139, 71, 0.1);
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 250;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 6vw;
      background: linear-gradient(to bottom, rgba(10, 5, 15, 0.95), rgba(10, 5, 15, 0));
      font-family: 'Jost', sans-serif;
      transition: all 0.4s ease;
      border-bottom: 1px solid transparent;
    }

    nav.scrolled {
      padding: 14px 6vw;
      background: rgba(10, 5, 15, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

    .brand {
      font-family: 'Cinzel Decorative', serif;
      font-size: 24px;
      color: var(--gold-bright);
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand .sigil-mini {
      width: 32px;
      height: 32px;
      filter: drop-shadow(0 0 5px rgba(179, 139, 71, 0.5));
    }

    .navlinks {
      display: flex;
      gap: 36px;
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
    }

    .navlinks a {
      opacity: 0.8;
      transition: all 0.3s;
      position: relative;
      padding: 6px 0;
    }

    .navlinks a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold-bright);
      transition: width 0.3s;
    }

    .navlinks a:hover {
      opacity: 1;
      color: var(--gold-bright);
    }

    .navlinks a:hover::after {
      width: 100%;
    }

    .nav-cta {
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid var(--gold);
      color: var(--gold-bright);
      padding: 12px 24px;
      border-radius: 3px;
      background: transparent;
      transition: all 0.3s;
      font-weight: 600;
    }

    .nav-cta:hover {
      background: var(--gold);
      color: var(--void);
      box-shadow: 0 0 15px rgba(179, 139, 71, 0.4);
    }

    /* Mobile menu button */
    .menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--cream);
      cursor: pointer;
    }

    /* Close button inside drawer — hidden on desktop */
    .menu-close {
      display: none;
    }

    /* Nav overlay — hidden on desktop */
    .nav-overlay {
      display: none;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 160px 6vw 100px;
      position: relative;
    }

    .sigil {
      position: absolute;
      top: 50%;
      left: 50%;
      width: min(850px, 140vw);
      height: min(850px, 140vw);
      transform: translate(-50%, -50%);
      opacity: 0.12;
      pointer-events: none;
      z-index: 0;
      filter: drop-shadow(0 0 15px rgba(240, 207, 142, 0.2));
      animation: sigil-glow 6s ease-in-out infinite alternate;
    }

    @keyframes sigil-glow {
      0% {
        filter: drop-shadow(0 0 15px rgba(240, 207, 142, 0.2));
        opacity: 0.10;
      }

      100% {
        filter: drop-shadow(0 0 35px rgba(138, 31, 73, 0.4));
        opacity: 0.16;
      }
    }

    .sigil .outer {
      animation: spin 160s linear infinite;
      transform-origin: center;
    }

    .sigil .inner {
      animation: spin-reverse 120s linear infinite;
      transform-origin: center;
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes spin-reverse {
      from {
        transform: rotate(360deg);
      }

      to {
        transform: rotate(0deg);
      }
    }

    .hero-inner {
      max-width: 860px;
      position: relative;
      z-index: 3;
    }

    .urgency-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(86, 17, 44, 0.5);
      border: 1px solid var(--wine-bright);
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 24px;
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      letter-spacing: 0.08em;
      color: var(--cream);
      text-transform: uppercase;
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #00ff66;
      box-shadow: 0 0 8px #00ff66;
      animation: beacon 1.8s infinite;
    }

    @keyframes beacon {
      0% {
        transform: scale(0.9);
        opacity: 1;
      }

      50% {
        transform: scale(1.4);
        opacity: 0.4;
      }

      100% {
        transform: scale(0.9);
        opacity: 1;
      }
    }

    .hero h1 {
      font-size: clamp(40px, 6.8vw, 78px);
      line-height: 1.05;
      margin-bottom: 24px;
    }

    .hero p.lead {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 24px;
      color: var(--muted);
      max-width: 680px;
      margin: 0 auto 40px;
    }

    .hero-ctas {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 50px;
      font-family: 'Jost', sans-serif;
    }

    .stat-item strong {
      display: block;
      font-size: 32px;
      color: var(--gold-bright);
      font-family: 'Cinzel', serif;
    }

    .stat-item span {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
    }

    /* Section Headings */
    .section-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 70px;
    }

    .section-head h2 {
      font-size: clamp(34px, 4.2vw, 48px);
      margin-top: 14px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 20px;
      margin-top: 18px;
    }

    .divider {
      width: 100px;
      height: 1px;
      background: var(--gold);
      margin: 30px auto 0;
      position: relative;
    }

    .divider::before {
      content: "✦";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--void);
      color: var(--gold);
      padding: 0 15px;
      font-size: 16px;
    }

    /* About Section */
    .about {
      padding: 120px 6vw;
      position: relative;
    }

    .about::before {
      content: "";
      position: absolute;
      right: 0;
      top: 20%;
      width: 300px;
      height: 500px;
      background: radial-gradient(circle, rgba(179, 139, 71, 0.06) 0%, transparent 70%);
      z-index: 1;
      pointer-events: none;
    }

    .about-grid {
      max-width: 1150px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
    }

    .about-portrait {
      aspect-ratio: 3/4;
      border-radius: 6px;
      position: relative;
      border: 1px solid var(--line);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    }

    .about-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 5px;
      filter: saturate(0.9) contrast(1.05);
    }

    .about-portrait .frame-glow {
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 80px rgba(10, 5, 15, 0.85);
      border-radius: 5px;
      pointer-events: none;
    }

    .badge-years {
      position: absolute;
      bottom: -25px;
      right: -25px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--wine), #3c0c1e);
      border: 2px solid var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: 'Cinzel', serif;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
      z-index: 4;
    }

    .badge-years strong {
      font-size: 38px;
      color: var(--gold-bright);
      line-height: 1;
    }

    .badge-years span {
      font-family: 'Jost', sans-serif;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-top: 4px;
      color: var(--cream);
    }

    .about-text h3 {
      font-size: 28px;
      margin-bottom: 24px;
      color: var(--gold-bright);
    }

    .about-text p {
      margin-bottom: 20px;
      font-size: 20px;
      color: rgba(244, 237, 217, 0.9);
    }

    .about-text blockquote {
      border-left: 3px solid var(--gold);
      padding-left: 24px;
      font-style: italic;
      color: var(--gold-bright);
      font-size: 22px;
      margin: 30px 0;
    }

    .cred-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    .cred-item {
      text-align: center;
      background: rgba(23, 13, 34, 0.4);
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 20px 10px;
    }

    .cred-item svg {
      width: 30px;
      height: 30px;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .cred-item h4 {
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--cream);
    }

    .cred-item p {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 0;
      margin-top: 4px;
    }

    @media(max-width:900px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .about-portrait {
        max-width: 450px;
        margin: 0 auto;
      }

      .badge-years {
        right: -15px;
        bottom: -15px;
      }

      .cred-list {
        grid-template-columns: 1fr;
      }
    }

    /* Services Section */
    .services {
      padding: 120px 6vw;
      background: linear-gradient(180deg, transparent, rgba(23, 13, 34, 0.6) 10%, rgba(23, 13, 34, 0.6) 90%, transparent);
    }

    .services-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
    }

    .service-card {
      background: linear-gradient(135deg, var(--surface), rgba(36, 21, 53, 0.4));
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s, box-shadow 0.4s;
      transform-style: preserve-3d;
      transform: perspective(1000px);
    }

    .service-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .service-card:hover {
      border-color: var(--gold);
      box-shadow: 0 15px 35px rgba(10, 5, 15, 0.6), 0 0 15px rgba(179, 139, 71, 0.1);
    }

    .service-card:hover::after {
      opacity: 1;
    }

    .card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 24px;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      color: var(--gold);
      filter: drop-shadow(0 0 4px rgba(179, 139, 71, 0.3));
    }

    .service-price {
      font-family: 'Jost', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--gold-bright);
      border: 1px dashed var(--gold);
      padding: 4px 10px;
      border-radius: 3px;
    }

    .service-card h3 {
      font-size: 24px;
      margin-bottom: 14px;
      transform: translateZ(20px);
    }

    .service-card p {
      color: var(--muted);
      font-size: 18px;
      transform: translateZ(10px);
    }

    .popular-tag {
      position: absolute;
      top: 12px;
      right: -30px;
      background: var(--wine-bright);
      color: var(--cream);
      font-family: 'Jost', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 4px 30px;
      transform: rotate(45deg);
      border-bottom: 1px solid rgba(240, 207, 142, 0.3);
    }

    /* Tarot Interactive Section */
    .tarot {
      padding: 120px 6vw;
      text-align: center;
    }

    .tarot-frame {
      max-width: 1050px;
      margin: 0 auto;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 60px 40px;
      background: radial-gradient(ellipse at top, rgba(86, 17, 44, 0.25), transparent 75%), rgba(23, 13, 34, 0.35);
      backdrop-filter: blur(10px);
      position: relative;
      box-shadow: 0 20px 55px rgba(0, 0, 0, 0.5);
    }

    /* Spread selector */
    .spread-selector {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .spread-btn {
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 12px 28px;
      border-radius: 50px;
      border: 1px solid var(--line);
      background: rgba(10, 5, 15, 0.6);
      color: var(--muted);
      cursor: pointer;
      transition: all 0.3s;
    }

    .spread-btn:hover,
    .spread-btn.active {
      color: var(--gold-bright);
      border-color: var(--gold-bright);
      background: rgba(86, 17, 44, 0.3);
      box-shadow: 0 0 15px rgba(240, 207, 142, 0.15);
    }

    .tarot-instructions {
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto 16px;
      font-size: 19px;
    }

    .draws-counter {
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 45px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .draws-counter strong {
      color: var(--gold-bright);
    }

    .deck-container {
      min-height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
      position: relative;
    }

    .deck {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
      perspective: 1200px;
      width: 100%;
      transition: all 0.5s ease;
    }

    .deck.fan {
      gap: -20px;
    }

    .card {
      width: 125px;
      height: 215px;
      position: relative;
      cursor: pointer;
      transform-style: preserve-3d;
      transition: transform 0.8s cubic-bezier(0.2, 0.85, 0.3, 1), box-shadow 0.3s;
      border-radius: 8px;
    }

    .card.flipped {
      transform: rotateY(180deg);
      cursor: default;
    }

    .card-face {
      position: absolute;
      inset: 0;
      border-radius: 8px;
      backface-visibility: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 16px;
      border: 1px solid var(--gold);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .card-back {
      background:
        repeating-linear-gradient(45deg, rgba(179, 139, 71, 0.06) 0 8px, transparent 8px 16px),
        linear-gradient(135deg, var(--wine) 0%, var(--surface) 100%);
      border-color: rgba(179, 139, 71, 0.6);
    }

    .card-back .rune {
      width: 50px;
      height: 50px;
      opacity: 0.85;
      filter: drop-shadow(0 0 5px rgba(240, 207, 142, 0.3));
    }

    .card-front {
      background: linear-gradient(135deg, var(--surface-2), var(--void));
      transform: rotateY(180deg);
      border-color: var(--gold-bright);
      padding: 0;
      overflow: hidden;
    }

    .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: sepia(0.25) contrast(1.1) brightness(0.85);
      transition: filter 0.3s ease;
    }

    .card:hover .card-img {
      filter: sepia(0) contrast(1.15) brightness(1.05);
    }

    .card:not(.flipped):hover {
      transform: translateY(-15px) rotate(1deg);
      box-shadow: 0 15px 30px rgba(179, 139, 71, 0.25);
    }

    .card.locked {
      filter: grayscale(0.5) brightness(0.5);
      cursor: not-allowed;
      pointer-events: none;
    }

    .reading-result {
      margin-top: 45px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      background: linear-gradient(135deg, rgba(86, 17, 44, 0.25), rgba(23, 13, 34, 0.85));
      border: 1px solid var(--gold-bright);
      border-radius: 8px;
      padding: 30px 35px;
      display: none;
      text-align: left;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(240, 207, 142, 0.12);
    }

    .reading-result.show {
      display: block;
      animation: fadein 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    }

    @keyframes fadein {
      from {
        opacity: 0;
        transform: translateY(15px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reading-result .eyebrow {
      display: block;
      margin-bottom: 12px;
      color: var(--gold-bright);
    }

    .reading-result p {
      font-size: 19px;
      color: var(--cream);
      font-style: italic;
    }

    .tarot-cta {
      margin-top: 40px;
    }

    /* Testimonials Section */
    .testimonials {
      padding: 120px 6vw;
      position: relative;
    }

    .filter-bar {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }

    .filter-btn {
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 10px 24px;
      border-radius: 4px;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.3s;
    }

    .filter-btn:hover,
    .filter-btn.active {
      color: var(--void);
      background: var(--gold-bright);
      border-color: var(--gold-bright);
      box-shadow: 0 4px 15px rgba(240, 207, 142, 0.3);
    }

    .test-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 32px;
      min-height: 300px;
      transition: all 0.4s;
    }

    .test-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 36px;
      position: relative;
      transition: all 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .test-card.hidden {
      display: none;
      opacity: 0;
      transform: scale(0.95);
    }

    .test-card.visible {
      animation: pop-in 0.4s forwards;
    }

    @keyframes pop-in {
      from {
        opacity: 0;
        transform: scale(0.95);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .quote-mark {
      font-family: 'Cinzel Decorative', serif;
      font-size: 60px;
      color: var(--wine-bright);
      line-height: 0.2;
      margin-bottom: 20px;
      display: block;
      opacity: 0.7;
    }

    .test-card p.quote {
      color: var(--cream);
      font-size: 19px;
      margin-bottom: 30px;
      font-style: italic;
    }

    .test-person {
      display: flex;
      align-items: center;
      gap: 16px;
      border-top: 1px dashed rgba(179, 139, 71, 0.15);
      padding-top: 20px;
    }

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cinzel', serif;
      color: var(--void);
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .test-person div strong {
      display: block;
      font-family: 'Jost', sans-serif;
      font-size: 15px;
      color: var(--gold-bright);
      letter-spacing: 0.05em;
    }

    .test-person div span {
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      color: var(--muted);
    }

    .stars {
      color: var(--gold);
      font-size: 14px;
      margin-top: 4px;
      letter-spacing: 2px;
    }

    /* Booking Widget Section */
    .booking {
      padding: 120px 6vw;
      position: relative;
    }

    .booking-frame {
      max-width: 1050px;
      margin: 0 auto;
      border-radius: 12px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--surface) 0%, rgba(86, 17, 44, 0.15) 100%);
      border: 1px solid var(--gold);
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    }

    .booking-left {
      padding: 60px 50px;
    }

    .booking-left h2 {
      color: var(--gold-bright);
      font-size: clamp(28px, 3.5vw, 38px);
      margin-bottom: 20px;
    }

    .booking-left p {
      color: rgba(244, 237, 217, 0.85);
      margin-bottom: 30px;
      font-size: 19px;
    }

    /* Scheduler Steps */
    .scheduler-steps {
      display: flex;
      gap: 15px;
      margin-bottom: 40px;
      border-bottom: 1px solid var(--line);
      padding-bottom: 15px;
    }

    .step-indicator {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
    }

    .step-indicator.active {
      color: var(--gold-bright);
    }

    .step-indicator .num {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1px solid var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    .step-indicator.active .num {
      border-color: var(--gold-bright);
      background: var(--wine);
    }

    .scheduler-container {
      min-height: 250px;
      position: relative;
    }

    .sched-step {
      display: none;
    }

    .sched-step.active {
      display: block;
      animation: step-fade 0.4s ease forwards;
    }

    @keyframes step-fade {
      from {
        opacity: 0;
        transform: translateX(10px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Step 1 Options */
    .service-options {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .option-card {
      background: rgba(10, 5, 15, 0.6);
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 20px 24px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
    }

    .option-card:hover {
      border-color: var(--gold);
      background: rgba(36, 21, 53, 0.4);
    }

    .option-card.selected {
      border-color: var(--gold-bright);
      background: rgba(86, 17, 44, 0.3);
    }

    .option-info h4 {
      font-family: 'Cinzel', serif;
      font-size: 18px;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .option-info p {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 0;
    }

    .option-price {
      font-family: 'Jost', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: var(--gold-bright);
    }

    /* Step 2 Calendar & Times */
    .datetime-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 24px;
    }

    .calendar-mini {
      background: rgba(10, 5, 15, 0.4);
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 16px;
    }

    .cal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--gold-bright);
      text-transform: uppercase;
    }

    .btn-cal-nav {
      background: none;
      border: none;
      color: var(--gold-bright);
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      padding: 2px 8px;
      border-radius: 4px;
      transition: all 0.2s;
    }

    .btn-cal-nav:hover:not(:disabled) {
      background: rgba(179, 139, 71, 0.2);
      color: var(--cream);
    }

    .btn-cal-nav:disabled {
      color: rgba(244, 237, 217, 0.15);
      cursor: not-allowed;
    }

    .cal-timezone-info {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      color: var(--muted);
      margin-top: 8px;
      text-align: center;
      border-top: 1px dashed var(--line);
      padding-top: 6px;
    }

    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 6px;
      text-align: center;
    }

    .cal-day-label {
      font-family: 'Jost', sans-serif;
      font-size: 10px;
      color: var(--muted);
      font-weight: 600;
      padding-bottom: 6px;
    }

    .cal-cell {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      color: var(--cream);
      cursor: pointer;
      transition: all 0.2s;
    }

    .cal-cell:hover:not(.disabled) {
      background: rgba(179, 139, 71, 0.2);
    }

    .cal-cell.selected {
      background: var(--wine);
      border: 1px solid var(--gold-bright);
      color: var(--gold-bright);
    }

    .cal-cell.disabled {
      color: rgba(244, 237, 217, 0.2);
      cursor: not-allowed;
    }

    .time-slots {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-height: 240px;
      overflow-y: auto;
      padding-right: 5px;
    }

    .time-slot {
      background: rgba(10, 5, 15, 0.4);
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 10px;
      text-align: center;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .time-slot:hover {
      border-color: var(--gold);
      background: rgba(179, 139, 71, 0.1);
    }

    .time-slot.selected {
      background: var(--wine);
      border-color: var(--gold-bright);
      color: var(--gold-bright);
    }

    /* Step 3 Form */
    .booking-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group label {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      font-weight: 600;
    }

    .form-input {
      background: rgba(10, 5, 15, 0.6);
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 12px 16px;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      color: var(--cream);
      transition: border-color 0.3s;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--gold-bright);
    }

    .phone-input-group {
      display: flex;
      gap: 10px;
    }

    .phone-input-group select {
      width: 125px;
      flex-shrink: 0;
      padding: 12px 8px;
      cursor: pointer;
    }

    .phone-input-group input {
      flex-grow: 1;
    }

    .step-actions {
      display: flex;
      justify-content: space-between;
      margin-top: 30px;
      gap: 15px;
    }

    /* Booking Right Panel */
    .booking-right {
      background: rgba(10, 5, 15, 0.6);
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-left: 1px solid var(--line);
    }

    .summary-box {
      background: rgba(23, 13, 34, 0.4);
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 24px;
    }

    .summary-box h3 {
      font-size: 20px;
      margin-bottom: 16px;
      border-bottom: 1px solid var(--line);
      padding-bottom: 10px;
    }

    .summary-item {
      display: flex;
      justify-content: space-between;
      font-size: 16px;
      margin-bottom: 10px;
      font-family: 'Jost', sans-serif;
    }

    .summary-item .label {
      color: var(--muted);
    }

    .summary-item .value {
      color: var(--cream);
      font-weight: 600;
      text-align: right;
    }

    .summary-total {
      border-top: 1px dashed var(--line);
      margin-top: 15px;
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .summary-total span {
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .summary-total strong {
      font-family: 'Cinzel', serif;
      font-size: 28px;
      color: var(--gold-bright);
    }

    @media(max-width:900px) {
      .booking-frame {
        grid-template-columns: 1fr;
      }

      .booking-right {
        border-left: none;
        border-top: 1px solid var(--line);
      }

      .datetime-grid {
        grid-template-columns: 1fr;
      }
    }

    /* FAQ Section */
    .faq {
      padding: 120px 6vw;
      position: relative;
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      background: rgba(23, 13, 34, 0.4);
      border: 1px solid var(--line);
      border-radius: 6px;
      overflow: hidden;
      transition: all 0.3s;
    }

    .faq-item:hover {
      border-color: var(--gold);
    }

    .faq-header {
      padding: 24px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: 'Cinzel', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--gold-bright);
    }

    .faq-icon {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
      color: var(--gold);
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      background: rgba(10, 5, 15, 0.2);
    }

    .faq-content-inner {
      padding: 0 30px 24px;
      font-size: 18px;
      color: var(--muted);
    }

    .faq-item.active {
      border-color: var(--gold-bright);
      background: rgba(23, 13, 34, 0.7);
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      color: var(--gold-bright);
    }

    .faq-item.active .faq-content {
      max-height: 250px;
    }

    /* Footer */
    footer {
      padding: 60px 6vw 40px;
      text-align: center;
      border-top: 1px solid var(--line);
      background: #07030a;
    }

    footer .brand {
      justify-content: center;
      margin-bottom: 20px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 30px;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      text-transform: uppercase;
      margin-bottom: 30px;
    }

    .footer-links a {
      opacity: 0.7;
      transition: all 0.3s;
    }

    .footer-links a:hover {
      opacity: 1;
      color: var(--gold-bright);
    }

    footer p {
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      color: var(--muted);
      max-width: 500px;
      margin: 0 auto 20px;
    }

    .copyright {
      font-size: 11px;
      color: rgba(142, 125, 153, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* Modals */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(6, 3, 9, 0.85);
      backdrop-filter: blur(8px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.show,
    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }

    .modal {
      max-width: 480px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      background: linear-gradient(135deg, var(--surface), var(--void));
      border: 1px solid var(--gold);
      border-radius: 12px;
      padding: 45px 36px;
      text-align: center;
      position: relative;
      transform: scale(0.9) translateY(20px);
      transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    }

    .modal-overlay.show .modal,
    .modal-overlay.active .modal {
      transform: scale(1) translateY(0);
    }

    .modal .flame {
      width: 56px;
      height: 76px;
      margin: 0 auto 24px;
      filter: drop-shadow(0 0 8px rgba(179, 139, 71, 0.4));
    }

    .modal h3 {
      font-size: 24px;
      margin-bottom: 14px;
      color: var(--gold-bright);
    }

    .modal p {
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 30px;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 18px;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 24px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }

    .modal-close:hover {
      color: var(--gold-bright);
    }

    /* Float buttons */
    .float-buttons {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 99;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .float-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: none;
      position: relative;
    }

    .float-btn:hover {
      transform: scale(1.1) translateY(-3px);
    }

    .float-whatsapp {
      background: #25d366;
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .float-whatsapp::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid #25d366;
      animation: ring-pulse 2s infinite;
      opacity: 0;
    }

    @keyframes ring-pulse {
      0% {
        transform: scale(0.95);
        opacity: 0.8;
      }

      50% {
        transform: scale(1.2);
        opacity: 0.3;
      }

      100% {
        transform: scale(1.4);
        opacity: 0;
      }
    }

    .float-whatsapp-tooltip {
      position: absolute;
      right: 70px;
      background: rgba(10, 5, 15, 0.9);
      border: 1px solid var(--gold);
      color: var(--cream);
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 8px 14px;
      border-radius: 4px;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.3s ease;
      pointer-events: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .float-whatsapp:hover .float-whatsapp-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    .float-scroll {
      background: rgba(23, 13, 34, 0.8);
      border: 1px solid var(--line);
      color: var(--gold-bright);
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px);
      transition: all 0.4s ease;
    }

    .float-scroll.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    /* Social Links in Footer */
    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 25px;
      position: relative;
      z-index: 10;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--line);
      color: var(--gold-bright);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      background: rgba(23, 13, 34, 0.4);
    }

    .social-links a:hover {
      color: var(--void);
      background: var(--gold-bright);
      border-color: var(--gold-bright);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(240, 207, 142, 0.3);
    }

    .social-icon {
      width: 20px;
      height: 20px;
    }

    /* Mobile menu active classes */
    @media (max-width: 860px) {
      nav {
        padding: 16px 5vw;
      }

      .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
      }

      .navlinks {
        position: fixed;
        top: 0;
        right: 0;
        width: min(280px, 85vw);
        height: 100vh;
        background: rgba(10, 5, 15, 0.98);
        border-left: 1px solid var(--line);
        flex-direction: column;
        gap: 24px;
        padding: 80px 30px 40px;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                    visibility 0.4s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        transform: translateX(100%);
        visibility: hidden;
        z-index: 300;
      }

      .navlinks.open {
        transform: translateX(0);
        visibility: visible;
      }

      /* Overlay oscuro detrás del menú */
      .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 198;
        backdrop-filter: blur(3px);
        transition: opacity 0.4s;
        opacity: 0;
      }

      .nav-overlay.show {
        display: block;
        opacity: 1;
      }

      /* Botón cerrar (X) dentro del panel */
      .menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 18px;
        right: 18px;
        background: none;
        border: none;
        color: var(--muted);
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        transition: color 0.2s;
      }

      .menu-close:hover {
        color: var(--gold-bright);
      }

      .nav-cta {
        display: none;
      }

      .scroll-cue {
        display: none;
      }
    }

    /* E-E-A-T Legal Disclaimer & Transparency Footer Styling */
    .legal-disclaimer {
      max-width: 800px;
      margin: 25px auto 15px;
      padding: 16px 20px;
      background: rgba(23, 13, 34, 0.6);
      border: 1px solid rgba(201, 161, 92, 0.2);
      border-radius: 6px;
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      line-height: 1.6;
      color: var(--muted);
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .legal-disclaimer strong {
      color: var(--gold-bright);
    }

    .footer-legal-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 15px;
      font-size: 12px;
    }

    .footer-legal-links a {
      color: var(--muted);
      text-decoration: underline;
      transition: color 0.3s ease;
    }

    .footer-legal-links a:hover {
      color: var(--gold-bright);
    }

    /* ============================================================
       RESPONSIVE — 768px (Tablets y móviles grandes)
       ============================================================ */
    @media (max-width: 768px) {

      /* Base */
      html, body {
        overflow-x: hidden;
        width: 100%;
        font-size: 16px;
      }

      section {
        padding: 60px 5vw;
        overflow-x: hidden;
      }

      /* Hero */
      .hero {
        padding: 120px 5vw 70px;
        min-height: auto;
        overflow: hidden;
      }

      .hero h1 {
        font-size: clamp(28px, 7.5vw, 48px);
      }

      .hero p.lead {
        font-size: clamp(15px, 3.8vw, 19px);
        margin-bottom: 24px;
      }

      .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
      }

      .stat-item strong {
        font-size: 24px;
      }

      .stat-item span {
        font-size: 10px;
      }

      .urgency-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 16px;
      }

      .btn {
        padding: 14px 24px;
        font-size: 12px;
      }

      /* Section headers */
      .section-head {
        margin-bottom: 40px;
      }

      .section-head h2 {
        font-size: clamp(24px, 5.5vw, 36px);
      }

      .section-head p {
        font-size: 16px;
      }

      /* About */
      .about {
        padding: 70px 5vw;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-portrait {
        max-width: 360px;
        width: 100%;
        margin: 0 auto;
        position: relative;
      }

      .badge-years {
        width: 100px;
        height: 100px;
        right: 5px;
        bottom: 5px;
      }

      .badge-years strong {
        font-size: 28px;
      }

      .about-text h3 {
        font-size: 22px;
      }

      .about-text p {
        font-size: 16px;
      }

      .about-text blockquote {
        font-size: 17px;
        padding-left: 16px;
        margin: 20px 0;
      }

      .cred-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
      }

      /* Services */
      .services {
        padding: 70px 5vw;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .service-card {
        padding: 28px 20px;
      }

      .service-card h3 {
        font-size: 20px;
      }

      .service-card p {
        font-size: 15px;
      }

      /* Tarot */
      .tarot {
        padding: 70px 5vw;
      }

      .tarot-frame {
        padding: 32px 20px;
      }

      .deck-container {
        min-height: 200px;
      }

      .card {
        width: 95px;
        height: 162px;
      }

      .tarot-instructions {
        font-size: 15px;
      }

      /* Testimonials */
      .testimonials {
        padding: 70px 5vw;
      }

      .test-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .test-card {
        padding: 24px 20px;
        overflow-wrap: break-word;
        word-wrap: break-word;
      }

      .test-card p.quote {
        font-size: 16px;
      }

      /* Booking */
      .booking {
        padding: 70px 5vw;
      }

      .booking-frame {
        grid-template-columns: 1fr;
      }

      .booking-left {
        padding: 36px 24px;
      }

      .booking-right {
        border-left: none;
        border-top: 1px solid var(--line);
        padding: 28px 24px;
      }

      .booking-left h2 {
        font-size: clamp(22px, 5vw, 30px);
      }

      .booking-left p {
        font-size: 15px;
      }

      .scheduler-steps {
        flex-wrap: wrap;
        gap: 10px;
      }

      .datetime-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .time-slots {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-height: none;
        overflow-y: visible;
      }

      .time-slot {
        padding: 12px 6px;
        font-size: 13px;
      }

      /* FAQ */
      .faq {
        padding: 70px 5vw;
      }

      .faq-header {
        padding: 16px 18px;
        font-size: 15px;
        line-height: 1.4;
      }

      .faq-content-inner {
        padding: 0 18px 16px;
        font-size: 15px;
      }

      /* Footer */
      footer {
        padding: 45px 5vw 24px;
      }

      .footer-links {
        gap: 14px;
        flex-wrap: wrap;
      }

      .footer-legal-links {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
      }

      /* Float buttons */
      .float-buttons {
        bottom: 18px;
        right: 14px;
        gap: 10px;
      }

      .float-btn {
        width: 48px;
        height: 48px;
      }
    }

    /* ============================================================
       RESPONSIVE — 480px (Móviles medianos: iPhone, Samsung)
       ============================================================ */
    @media (max-width: 480px) {

      /* Base */
      body {
        font-size: 15px;
      }

      section {
        padding: 50px 4.5vw;
      }

      /* Navegación */
      nav {
        padding: 12px 4.5vw;
      }

      .brand {
        font-size: 16px;
        gap: 8px;
      }

      .brand .sigil-mini {
        width: 24px;
        height: 24px;
      }

      /* Hero */
      .hero {
        padding: 100px 4.5vw 50px;
      }

      .hero h1 {
        font-size: clamp(24px, 8.5vw, 38px);
        line-height: 1.12;
      }

      .hero p.lead {
        font-size: 14px;
        margin-bottom: 20px;
      }

      .hero-stats {
        gap: 14px;
        margin-top: 24px;
      }

      .stat-item {
        text-align: center;
        flex: 1 1 30%;
        min-width: 75px;
      }

      .stat-item strong {
        font-size: 20px;
      }

      .stat-item span {
        font-size: 9px;
        letter-spacing: 0.1em;
      }

      /* Hero CTA buttons */
      .hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
      }

      .hero .btn,
      .hero-ctas .btn {
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 0;
        padding: 14px 16px;
      }

      /* Urgency badge */
      .urgency-badge {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 14px;
      }

      /* Section head */
      .section-head {
        margin-bottom: 30px;
      }

      .section-head h2 {
        font-size: clamp(20px, 6.5vw, 30px);
      }

      .section-head p {
        font-size: 14px;
        margin-top: 10px;
      }

      /* About */
      .about {
        padding: 50px 4.5vw;
      }

      .about-portrait {
        max-width: 280px;
      }

      .badge-years {
        width: 80px;
        height: 80px;
        right: 4px;
        bottom: 4px;
      }

      .badge-years strong {
        font-size: 22px;
      }

      .badge-years span {
        font-size: 7px;
      }

      .about-text h2 {
        font-size: 22px;
      }

      .about-text p {
        font-size: 14px;
      }

      .about-text blockquote {
        font-size: 15px;
        padding-left: 12px;
      }

      /* Services */
      .services {
        padding: 50px 4.5vw;
      }

      .service-card {
        padding: 20px 16px;
        border-radius: 6px;
      }

      .service-card h3 {
        font-size: 18px;
      }

      .service-card p {
        font-size: 14px;
      }

      /* Tarot */
      .tarot {
        padding: 50px 4.5vw;
      }

      .tarot-frame {
        padding: 24px 14px;
        border-radius: 8px;
      }

      .spread-selector {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin-bottom: 20px;
      }

      .spread-btn {
        width: 100%;
        font-size: 11px;
        padding: 10px 14px;
        text-align: center;
      }

      .deck {
        gap: 8px;
        width: 100%;
        overflow: hidden;
      }

      .card {
        width: 78px;
        height: 134px;
        border-radius: 6px;
      }

      .deck-container {
        min-height: 160px;
        margin-bottom: 20px;
      }

      .reading-result {
        padding: 16px 14px;
        border-radius: 6px;
      }

      .reading-result p {
        font-size: 14px;
      }

      .tarot-instructions {
        font-size: 13px;
      }

      /* Filter bar */
      .filter-bar {
        gap: 6px;
        margin-bottom: 24px;
        justify-content: center;
      }

      .filter-btn {
        font-size: 10px;
        padding: 8px 12px;
      }

      /* Testimonials */
      .testimonials {
        padding: 50px 4.5vw;
      }

      .test-card {
        padding: 20px 16px;
      }

      .test-card p.quote {
        font-size: 14px;
      }

      .quote-mark {
        font-size: 40px;
      }

      /* Booking */
      .booking {
        padding: 50px 4.5vw;
      }

      .booking-left {
        padding: 24px 16px;
      }

      .booking-right {
        padding: 20px 16px;
      }

      .booking-left h2 {
        font-size: clamp(18px, 5.5vw, 26px);
      }

      .booking-left p {
        font-size: 14px;
      }

      .scheduler-steps {
        gap: 6px;
      }

      .step-indicator {
        font-size: 9px;
      }

      .phone-input-group {
        flex-direction: column;
        gap: 8px;
      }

      .phone-input-group select {
        width: 100%;
      }

      .step-actions {
        flex-direction: column;
        gap: 10px;
      }

      .step-actions .btn {
        width: 100%;
        text-align: center;
      }

      .option-card {
        padding: 12px 14px;
      }

      .option-info h4 {
        font-size: 14px;
      }

      .option-info p {
        font-size: 12px;
      }

      .summary-box {
        padding: 16px 14px;
      }

      .summary-box h3 {
        font-size: 16px;
      }

      .summary-item {
        font-size: 13px;
      }

      .summary-total strong {
        font-size: 20px;
      }

      .cal-grid {
        gap: 4px;
      }

      .cal-cell {
        font-size: 11px;
        border-radius: 3px;
      }

      .cal-day-label {
        font-size: 9px;
      }

      /* FAQ */
      .faq {
        padding: 50px 4.5vw;
      }

      .faq-header {
        padding: 14px 14px;
        font-size: 14px;
        line-height: 1.35;
      }

      .faq-content-inner {
        padding: 0 14px 14px;
        font-size: 13px;
        line-height: 1.5;
      }

      /* Footer */
      footer {
        padding: 35px 4.5vw 20px;
      }

      .brand {
        font-size: 15px;
      }

      .footer-links {
        gap: 10px;
        font-size: 11px;
      }

      footer p {
        font-size: 11px;
      }

      .legal-disclaimer {
        font-size: 10px;
        padding: 10px 12px;
      }

      /* Modals */
      .modal {
        padding: 28px 18px;
        border-radius: 8px;
        max-height: 85vh;
        width: 92vw;
      }

      .modal h3 {
        font-size: 18px;
      }

      .modal p {
        font-size: 14px;
      }

      .modal .flame {
        width: 44px;
        height: 60px;
        margin-bottom: 16px;
      }

      /* Float buttons */
      .float-buttons {
        bottom: 14px;
        right: 10px;
        gap: 8px;
      }

      .float-btn {
        width: 44px;
        height: 44px;
      }

      .float-whatsapp-tooltip {
        display: none;
      }
    }

    /* ============================================================
       RESPONSIVE — 360px (Móviles pequeños: Galaxy Fold, iPhone SE)
       ============================================================ */
    @media (max-width: 360px) {

      section {
        padding: 40px 3.5vw;
      }

      .hero h1 {
        font-size: clamp(20px, 8.5vw, 32px);
      }

      .hero p.lead {
        font-size: 13px;
      }

      .hero-stats {
        gap: 10px;
      }

      .stat-item strong {
        font-size: 18px;
      }

      .stat-item span {
        font-size: 8px;
      }

      .card {
        width: 68px;
        height: 116px;
      }

      .section-head h2 {
        font-size: clamp(18px, 7vw, 26px);
      }

      .brand {
        font-size: 14px;
      }

      .faq-header {
        font-size: 13px;
        padding: 12px 12px;
      }

      .service-card h3 {
        font-size: 16px;
      }

      .booking-left h2 {
        font-size: 17px;
      }

      .about-portrait {
        max-width: 240px;
      }

      .badge-years {
        width: 70px;
        height: 70px;
        right: 2px;
        bottom: 2px;
      }

      .badge-years strong {
        font-size: 18px;
      }

      .badge-years span {
        font-size: 6px;
      }

      .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
      }

      .float-btn {
        width: 40px;
        height: 40px;
      }
    }
