/* ============================================
   TAROT READING PAGE — Hero & Card Animations
   ============================================ */

/* --- Hero Section --- */
.tarot-hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 20px 40px;
  overflow: hidden;
  background: #fffaf7;
}

/* Organic background blobs */
.tarot-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.tarot-hero-blob--1 {
  width: 420px;
  height: 400px;
  border-radius: 44% 56% 48% 52% / 52% 44% 56% 48%;
  background: rgba(230, 216, 200, 0.2);
  top: -80px;
  left: -60px;
  animation: blobDrift1 25s infinite ease-in-out alternate;
}

.tarot-hero-blob--2 {
  width: 350px;
  height: 330px;
  border-radius: 52% 48% 44% 56% / 48% 52% 48% 52%;
  background: rgba(230, 216, 200, 0.15);
  bottom: 10%;
  right: -40px;
  animation: blobDrift2 22s infinite ease-in-out alternate-reverse;
}

.tarot-hero-blob--3 {
  width: 250px;
  height: 240px;
  border-radius: 48% 52% 50% 50% / 54% 46% 54% 46%;
  background: rgba(226, 201, 160, 0.12);
  top: 30%;
  right: 15%;
  animation: blobDrift3 28s infinite ease-in-out alternate;
}

/* --- Hero Content --- */
.tarot-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tarot-hero-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  color: #8c5c5c;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

.tarot-hero-subtitle {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #b27d6a;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
}

.tarot-hero-text {
  max-width: 700px;
  margin: 0 auto 35px;
}

.tarot-hero-text p {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* --- Buttons --- */
.tarot-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.tarot-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.tarot-hero-btn--primary {
  background: linear-gradient(135deg, #d4a574, #b46746, #c27d60);
  color: white;
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.3);
}

.tarot-hero-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(180, 103, 70, 0.4);
  color: white;
}

.tarot-hero-btn--primary svg {
  opacity: 0.85;
  transition: opacity 0.3s;
}

.tarot-hero-btn--primary:hover svg {
  opacity: 1;
  transform: rotate(15deg);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tarot-hero-btn--outline {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: #8b4f4f;
  border: 1.5px solid rgba(180, 103, 70, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tarot-hero-btn--outline:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 103, 70, 0.6);
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.15);
  color: #8b4f4f;
}

.tarot-hero-btn--outline svg {
  color: #b46746;
  transition: transform 0.3s;
}

.tarot-hero-btn--outline:hover svg {
  transform: translateX(4px);
}

/* --- Notice --- */
.tarot-hero-notice {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 15px;
  color: #8b4f4f;
  font-style: italic;
  margin-bottom: 50px;
}

/* ============================================
   CARD SPREAD — The showstopper
   ============================================ */
.tarot-hero-cards {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  padding: 30px 20px 60px;
}

/* Individual card */
.tarot-hero-card {
  position: relative;
  width: 190px;
  height: 310px;
  text-decoration: none;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s ease;
  cursor: pointer;
}

/* Hover: lift + glow */
.tarot-hero-card:hover {
  transform: translateY(-12px);
  filter: drop-shadow(0 20px 30px rgba(140, 92, 92, 0.25));
  z-index: 20;
}

/* Card inner */
.tarot-hero-card__inner {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease;
  position: relative;
}

.tarot-hero-card__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.tarot-hero-card:hover .tarot-hero-card__inner {
  box-shadow:
    0 20px 50px rgba(140, 92, 92, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.tarot-hero-card:hover .tarot-hero-card__inner img {
  transform: scale(1.08);
}

/* Subtle dark overlay */
.tarot-hero-card__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(30, 20, 15, 0.35);
  transition: background 0.4s ease;
  pointer-events: none;
}

.tarot-hero-card:hover .tarot-hero-card__inner::after {
  background: rgba(30, 20, 15, 0.5);
}

/* Card label — Minimal Centered */
.tarot-hero-card__label {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
  padding: 20px;
}

.tarot-hero-card__name {
  font-family: var(--font-accent);
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.tarot-hero-card__line {
  display: block;
  width: 35px;
  height: 1px;
  background: #d4a574;
  margin: 10px auto;
  opacity: 0.7;
  transition: width 0.4s ease;
}

.tarot-hero-card:hover .tarot-hero-card__line {
  width: 55px;
}

.tarot-hero-card__sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.tarot-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tarot-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.tarot-section-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: #8b4f4f;
  text-align: center;
  margin-bottom: 20px;
}

.tarot-section-intro {
  font-size: 16px;
  color: #4a2d25;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* --- Benefits Card (Discover + Testimonials + Terms wrapper) --- */
.tarot-benefits-card {
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.07);
}

.tarot-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.tarot-benefit {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.09);
  border: 1px solid #f0ddd0;
  transition: transform 0.3s ease;
}

.tarot-benefit:hover {
  transform: translateY(-4px);
}

.tarot-benefit-icon {
  width: 115px;
  height: 115px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(180, 103, 70, 0.15);
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
}

.tarot-benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tarot-benefit h3 {
  color: #8b4f4f;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.tarot-benefit h4 {
  color: #b46746;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  font-style: italic;
  margin-bottom: 15px;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.tarot-benefit p {
  color: #4a2d25;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.tarot-benefit ul {
  color: #4a2d25;
  padding-left: 5px;
  list-style: none;
  font-size: 13px;
  line-height: 1.4;
}

.tarot-benefit ul li {
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.tarot-benefit ul li::before {
  content: '\2022';
  color: #b46746;
  position: absolute;
  left: 0;
}

.tarot-newbie-note {
  color: #4a2d25;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  font-style: italic;
  margin-top: 25px;
}

/* --- Why Choose + Image (two column) --- */
.tarot-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tarot-why-card {
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0e0e0;
}

.tarot-why-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: #8b4f4f;
  text-align: center;
  margin-bottom: 8px;
}

.tarot-why-sub {
  font-size: 14px;
  color: #b46746;
  text-align: center;
  margin-bottom: 28px;
}

.tarot-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tarot-why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tarot-why-bullet {
  color: #b46746;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 1px;
  flex-shrink: 0;
}

.tarot-why-item strong {
  color: #8b4f4f;
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.tarot-why-item p {
  color: #5a3d35;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* --- Why Choose: Magical Product Visual --- */
.tarot-why-visual {
  position: relative;
  perspective: 1000px;
}

/* Aura glow behind card */
.tarot-why-aura {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 175, 120, 0.35), rgba(220, 160, 140, 0.3), rgba(160, 200, 160, 0.2));
  filter: blur(60px);
  border-radius: 50%;
  animation: auraBreathe 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes auraBreathe {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.5; }
}

/* Glass card frame */
.tarot-why-glass {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2.5rem;
  padding: 10px;
  box-shadow: 0 15px 30px rgba(120, 90, 60, 0.04);
  animation: glassFloat 6s ease-in-out infinite;
  transition: transform 0.7s ease;
}

.tarot-why-glass:hover {
  transform: rotate(1deg);
}

@keyframes glassFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Image wrapper */
.tarot-why-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 4/5;
}

.tarot-why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1s ease;
}

.tarot-why-glass:hover .tarot-why-img-wrap img {
  transform: scale(1.1);
}

/* Hover overlay */
.tarot-why-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: white;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}

.tarot-why-glass:hover .tarot-why-overlay {
  transform: translateY(0);
  opacity: 1;
}

.tarot-why-overlay-title {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}

.tarot-why-overlay-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin: 0;
}

/* Floating glass badges */
.tarot-float-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-size: 13px;
  font-weight: 500;
  color: #57534e;
}

.tarot-float-badge--heart {
  right: -24px;
  top: 80px;
  animation: glassFloat 6s ease-in-out infinite;
  animation-delay: 1s;
}

.tarot-float-badge--zap {
  left: -24px;
  bottom: 130px;
  animation: glassFloat 6s ease-in-out infinite;
  animation-delay: 2s;
}

/* --- Service Cards --- */
.tarot-service-card {
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.07);
  margin-bottom: 30px;
}

.tarot-service-header {
  text-align: center;
  margin-bottom: 20px;
}

.tarot-service-name {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0;
}

.tarot-service-meta {
  color: #4a2d25;
  font-size: 16px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tarot-service-divider {
  color: #b27d6a;
  margin: 0 5px;
}

.tarot-service-columns {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.tarot-service-col {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f0ddd0;
}

.tarot-service-col h3 {
  color: #8b4f4f;
  font-size: 20px;
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.tarot-service-col p {
  color: #4a2d25;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

.tarot-service-col ul {
  color: #4a2d25;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tarot-service-col ul li {
  margin-bottom: 8px;
}

.tarot-service-col ul li::before {
  content: '\2611';
  color: #b46746;
  margin-right: 8px;
}

.tarot-service-perfect {
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #f0ddd0;
  margin-bottom: 20px;
}

.tarot-service-perfect h3 {
  color: #8b4f4f;
  font-size: 20px;
  text-align: center;
  margin: 0 0 15px;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.tarot-perfect-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tarot-perfect-items span {
  color: #4a2d25;
  font-size: 15px;
}

.tarot-perfect-items span::before {
  content: '\2022';
  color: #b46746;
  margin-right: 8px;
}

.tarot-service-cta {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.tarot-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  padding: 0 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d4a574, #b46746, #c27d60, #d4a574);
  color: white;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 6px 20px rgba(180, 103, 70, 0.25);
}

.tarot-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.35);
  color: white;
}

.tarot-service-note {
  color: #8b4f4f;
  font-size: 13px;
  font-style: italic;
  text-align: center;
  margin-top: 12px;
}

/* --- Testimonials --- */
.testimonial-slider-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.09);
  border: 1px solid #f0ddd0;
  position: relative;
}

.testimonial-quote {
  font-size: 50px;
  color: #f0ddd0;
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: #4a2d25;
  line-height: 1.6;
  font-size: 15px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.testimonial-author {
  display: block;
  color: #b46746;
  font-weight: 500;
  margin-top: 15px;
  text-align: right;
  font-size: 15px;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b27d6a;
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(180, 103, 70, 0.3);
  transition: background 0.3s;
}

.testimonial-arrow:hover {
  background: #8b4f4f;
}

.testimonial-prev { left: 5px; }
.testimonial-next { right: 5px; }

/* --- FAQ --- */
.tarot-faq-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tarot-faq-item {
  background: #FEF4EF;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.tarot-faq-q {
  padding: 22px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #8b4f4f;
  gap: 15px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.tarot-faq-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tarot-faq-toggle::before,
.tarot-faq-toggle::after {
  content: '';
  position: absolute;
  background: #8b4f4f;
}

.tarot-faq-toggle::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.tarot-faq-toggle::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.tarot-faq-item.active .tarot-faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.tarot-faq-a {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  color: #5a3d35;
  font-size: 15px;
  line-height: 1.6;
}

.tarot-faq-a p {
  margin-bottom: 12px;
}

.tarot-faq-item.active .tarot-faq-a {
  padding: 0 30px 25px;
  max-height: 600px;
}

/* --- Terms Table --- */
.tarot-terms-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  max-width: 960px;
  margin: 0 auto;
}

.tarot-terms-label {
  background: #fff4ef;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px 0 0 12px;
  color: #b46746;
  width: 35%;
  text-align: center;
}

.tarot-terms-value {
  background: #fffaf8;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 0 12px 12px 0;
  color: #4a2d25;
}

/* --- Location page-specific shapes --- */
#loc-shape1 {
  width: 300px; height: 300px;
  border-radius: 31% 69% 20% 80% / 60% 31% 69% 40%;
  background: rgba(230, 213, 203, 0.4);
  top: 10%; left: 5%; opacity: 0.5;
  animation: tarotFloat1 15s infinite alternate ease-in-out;
}

#loc-shape2 {
  width: 400px; height: 400px;
  border-radius: 69% 31% 54% 46% / 28% 50% 50% 72%;
  background: rgba(230, 213, 203, 0.25);
  bottom: 2%; right: 5%; opacity: 0.5;
  animation: tarotFloat2 12s infinite alternate-reverse ease-in-out;
}

#loc-circle1 {
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(230, 213, 203, 0.2);
  top: 30%; right: 25%;
  animation: tarotFloat3 18s infinite alternate ease-in-out;
}

@keyframes tarotFloat1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(15px, -10px) rotate(3deg); }
}

@keyframes tarotFloat2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-10px, 8px); }
}

@keyframes tarotFloat3 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(8px, -12px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .tarot-hero-cards {
    gap: 16px;
  }

  .tarot-hero-card {
    width: 150px;
    height: 250px;
  }

  .tarot-two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tarot-why-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .tarot-why-img-wrap {
    aspect-ratio: 4/4;
  }

  .tarot-float-badge--heart {
    right: 10px;
    top: 30px;
  }

  .tarot-float-badge--zap {
    left: 10px;
    bottom: 80px;
  }

  .tarot-service-columns {
    flex-direction: column;
    gap: 15px;
  }

  .tarot-perfect-items {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .tarot-hero {
    padding: 40px 15px 20px;
    min-height: auto;
  }

  .tarot-hero-cards {
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding-bottom: 30px;
  }

  .tarot-hero-card {
    width: calc(50% - 12px);
    height: 220px;
  }

  .tarot-hero-card:hover {
    transform: translateY(-8px);
  }

  .tarot-hero-notice {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .tarot-hero-title {
    font-size: 26px;
  }

  .tarot-hero-subtitle {
    font-size: 18px;
  }

  .tarot-hero-text p {
    font-size: 15px;
  }

  .tarot-hero-card {
    height: 190px;
  }
}

/* ============================================
   SERVICE CARDS — Progressive Disclosure
   ============================================ */
.ts-currency-note {
  font-size: 12px;
  color: #8c7b6b;
  text-align: center;
  margin-bottom: 30px;
}

.ts-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.ts-card {
  background: #fff;
  border: 1px solid #f0ddd0;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.ts-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(180, 103, 70, 0.08);
}
.ts-card--popular {
  border-color: #c39f7b;
}

.ts-card__accent { display: none; }
.ts-card { border-color: #c39f7b; border-top: 3px solid #c39f7b; }

/* Image section at top of card */
.ts-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
.ts-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.ts-card:hover .ts-card__img {
  transform: scale(1.05);
}
.ts-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 15, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.ts-card:hover .ts-card__img-overlay {
  background: rgba(30, 20, 15, 0.45);
}
.ts-card__img-name {
  font-family: var(--font-accent);
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
}
.ts-card__img-line {
  display: block;
  width: 30px;
  height: 1px;
  background: #d4a574;
  margin: 8px 0;
  opacity: 0.7;
  transition: width 0.4s ease;
}
.ts-card:hover .ts-card__img-line {
  width: 50px;
}
.ts-card__img-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.ts-card[data-tier="2"] .ts-card__accent { background: #CA9D75; }
.ts-card[data-tier="3"] .ts-card__accent { background: linear-gradient(90deg, #CA9D75, #B46746); }
.ts-card[data-tier="4"] .ts-card__accent { background: linear-gradient(90deg, #B46746, #4a2d25); }

.ts-card__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 22px;
  background: #835250;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: 2px solid #c39f7b;
  z-index: 3;
  white-space: nowrap;
}

.ts-card__head {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.ts-card.is-open .ts-card__head { min-height: auto; }

.ts-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ts-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: #070506;
  line-height: 1.2;
}

.ts-card__price { text-align: right; flex-shrink: 0; }
.ts-card__price-from {
  font-size: 10px;
  color: #8c7b6b;
  display: block;
  text-align: right;
  font-style: italic;
}
.ts-card__price-amount {
  font-family: var(--font-display);
  font-size: 28px;
  color: #936D42;
  line-height: 1;
  white-space: nowrap;
}
.ts-card__price-unit {
  font-size: 10px;
  color: #8c7b6b;
  display: block;
  text-align: right;
}

.ts-card__tagline {
  font-size: 13px;
  line-height: 1.5;
  color: #8c7b6b;
  margin-bottom: 14px;
}

.ts-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.ts-card__pill {
  font-size: 11px;
  color: #8c7b6b;
  background: rgba(202, 157, 117, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

.ts-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.ts-card__book-btn {
  flex: 1;
  text-align: center;
  padding: 11px 16px;
  background: #CA9D75;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ts-card__book-btn:hover { background: #936D42; }

.ts-card__toggle-btn {
  padding: 11px 16px;
  background: transparent;
  color: #936D42;
  border: 1px solid rgba(202, 157, 117, 0.3);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}
.ts-card__toggle-btn:hover {
  border-color: #CA9D75;
  background: rgba(202, 157, 117, 0.04);
}
.ts-card__toggle-btn::after { content: ' \2193'; font-size: 12px; }
.ts-card.is-open .ts-card__toggle-btn::after { content: ' \2191'; }

.ts-card__body {
  max-height: 0;
  overflow: hidden;
}
.ts-card.is-open .ts-card__body {
  max-height: 800px;
  transition: max-height 0.4s ease;
}

.ts-card__body-inner {
  padding: 0 22px 24px;
  border-top: 1px solid rgba(202, 157, 117, 0.1);
  padding-top: 18px;
}

.ts-card__detail { margin-bottom: 16px; }
.ts-card__detail-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #936D42;
  font-weight: 700;
  margin-bottom: 6px;
}
.ts-card__detail p {
  font-size: 13px;
  line-height: 1.65;
  color: #433e37;
}

.ts-card__detail-list { list-style: none; padding: 0; margin: 0; }
.ts-card__detail-list li {
  font-size: 13px;
  line-height: 1.6;
  padding: 3px 0 3px 16px;
  position: relative;
  color: #433e37;
}
.ts-card__detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4a574;
}

.ts-card__perfect-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ts-card__perfect-tag {
  font-size: 11px;
  color: #433e37;
  background: #f9f3ee;
  padding: 4px 12px;
  border-radius: 20px;
}

.ts-card__extra-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}
.ts-card__extra-btn {
  text-align: center;
  padding: 10px;
  background: transparent;
  color: #070506;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: border-color 0.3s ease;
}
.ts-card__extra-btn:hover { border-color: #CA9D75; }

.ts-card__note {
  font-size: 11px;
  color: #8c7b6b;
  margin-top: 12px;
  font-style: italic;
}

@media (max-width: 900px) {
  .ts-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .ts-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .ts-card__top { flex-direction: column; gap: 4px; }
  .ts-card__price { text-align: left; }
  .ts-card__price-amount { font-size: 24px; }
  .ts-card__price-unit { text-align: left; }
  .ts-card__price-from { text-align: left; }
  .ts-card__actions { flex-direction: column; }
}
