/* ============================================================
   VIBE TRIBE NOTIONS — pages.css
   Page-specific styles for each section / page
   ============================================================ */

/* ═══════════════════════════════════════════
   INDEX PAGE
   ═══════════════════════════════════════════ */

/* Hero */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pl);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease forwards;
}
.hero-kicker span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
}
.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(4.5rem, 6.5vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-h1 .line1 { display: block; font-style: italic; color: var(--pl); }
.hero-h1 .line2 { display: block; font-weight: 700; }
.hero-h1 .line3 {
  display: block;
  font-weight: 300;
  font-size: 0.55em;
  letter-spacing: 0.08em;
  margin-top: 6px;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}
.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-tagline {
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  margin-bottom: 44px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-tagline strong { color: var(--gold); font-weight: 500; }
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}

/* Stats bar */
.stats-bar {
  position: relative;
  z-index: 10;
  margin: -13px auto 0;
  max-width: 900px;
  padding: 0 clamp(20px, 5vw, 64px);
}
.stats-inner {
  background: linear-gradient(135deg, rgba(42,18,80,0.9), rgba(14,5,24,0.95));
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--r);
  padding: 28px 40px;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--fd);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 4px; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(124,58,237,0.25); }

/* Services Section */
#services { background: #0b0316; position: relative; }
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pa), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}
.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc-card:hover img { transform: scale(1.07); }
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(14,5,24,0.95) 0%,
    rgba(42,18,80,0.4) 50%,
    transparent 80%);
}
.svc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
}
.svc-icon { font-size: 1.6rem; margin-bottom: 12px; }
.svc-name {
  font-family: var(--fd);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
}
.svc-desc {
  font-size: 0.8rem;
  color: rgba(196,181,216,0.8);
  line-height: 1.6;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.svc-card:hover .svc-desc { max-height: 100px; }
.svc-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.svc-card:hover .svc-link { gap: 12px; }
.svc-tag {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  background: linear-gradient(135deg, var(--pa), var(--pl));
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Pain / Healing / Channeling */
#pain { background: var(--pd); }

#healing { position: relative; overflow: hidden; }
.healing-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.healing-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(14,5,24,0.94) 0%,
    rgba(42,18,80,0.88) 55%,
    rgba(14,5,24,0.96) 100%);
}
.healing-inner { position: relative; z-index: 2; }
.healing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.healing-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
}
.healing-img-float {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 188px; height: 188px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid var(--pd);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

#channeling { background: #0b0316; position: relative; }
#channeling::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pa), transparent);
}
.channeling-inner { text-align: center; max-width: 720px; margin: 0 auto; }

/* Spiritual Counseling Banner */
#sc-banner { position: relative; overflow: hidden; }
.sc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.sc-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(14,5,24,0.97) 0%,
    rgba(42,18,80,0.88) 60%,
    rgba(124,58,237,0.4) 100%);
}
.sc-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 64px);
}
.sc-text { max-width: 620px; }
.sc-text .h2 { text-align: left; font-size: clamp(2rem, 4vw, 3.2rem); }

/* Index responsive */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .healing-grid  { grid-template-columns: 1fr; }
  .healing-img img { height: 360px; }
  .healing-img-float { display: none; }
  .stats-inner { gap: 16px; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(3.8rem, 13vw, 6rem); }
  .sc-inner { flex-direction: column; }
}


/* ═══════════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════════ */

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 100px 24px 40px;
  text-align: center;
  animation: fadeUp 1s ease forwards;
}
.shop-hero-title {
  font-family: var(--fd);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}
.shop-hero-title em  { font-style: italic; color: var(--pl); }
.shop-hero-title strong { font-weight: 600; }

#shop {
  padding: clamp(60px,8vw,100px) clamp(20px,5vw,60px) clamp(80px,10vw,120px);
  background: #0f0520;
  position: relative;
}
#shop::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pa), transparent);
}

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(36px,5vw,56px);
}
.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-pill {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(124,58,237,0.28);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.22s;
  font-family: var(--fb);
}
.filter-pill:hover,
.filter-pill.active {
  background: linear-gradient(135deg, var(--pa), var(--pl));
  border-color: transparent;
  color: white;
}
.sort-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(124,58,237,0.28);
  border-radius: 12px;
  padding: 10px 36px 10px 16px;
  color: var(--w);
  font-family: var(--fb);
  font-size: 0.82rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a855f7' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.sort-select option { background: #1a0a2e; }

/* Product grid & cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: linear-gradient(135deg, rgba(59,31,110,0.35), rgba(26,10,46,0.75));
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.product-img-wrap { position: relative; overflow: hidden; }
.product-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
  display: block;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gl));
  color: var(--pd);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.product-badge.new {
  background: linear-gradient(135deg, var(--pa), var(--pl));
  color: white;
}
.quick-add {
  position: absolute;
  bottom: -40px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  padding: 0 16px 14px;
  transition: bottom 0.3s var(--ease);
}
.product-card:hover .quick-add { bottom: 0; }
.quick-add-btn {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(26,10,46,0.92);
  border: 1px solid rgba(124,58,237,0.5);
  color: var(--w);
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
  font-family: var(--fb);
}
.quick-add-btn:hover {
  background: linear-gradient(135deg, var(--pa), var(--pl));
  border-color: transparent;
}
.product-info { padding: 20px 22px 22px; }
.product-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}
.add-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pa), var(--pl));
  border: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(124,58,237,0.4);
}
.add-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(124,58,237,0.6);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(48px,6vw,72px);
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.28);
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
}
.page-btn:hover {
  border-color: var(--pa);
  color: white;
  background: rgba(124,58,237,0.18);
}
.page-btn.active {
  background: linear-gradient(135deg, var(--pa), var(--pl));
  border-color: transparent;
  color: white;
}
.page-btn.arrow { font-size: 1rem; }

@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); }
  .filter-pills  { gap: 8px; }
}


/* ═══════════════════════════════════════════
   HERO COMMON (non-index pages)
   ═══════════════════════════════════════════ */

.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 100px 24px 40px;
  animation: fadeUp 1s ease forwards;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.hero-title {
  font-family: var(--fd);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-title em     { font-style: italic; color: var(--pl); }
.hero-title strong { font-weight: 600; }
.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 20px 0 40px;
  line-height: 2;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════
   WHAT IS REIKI PAGE
   ═══════════════════════════════════════════ */

#what-is { background: var(--pd); }
.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.what-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pl);
  margin-bottom: 18px;
}
.what-pill span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
}
.what-body {
  font-size: 0.94rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 16px;
}
.what-body strong { color: var(--w); font-weight: 500; }
.what-img-wrap { position: relative; }
.what-img-main {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
}
.what-img-float {
  position: absolute;
  bottom: -28px; left: -28px;
  width: 180px; height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid var(--pd);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* How it works */
#how-it-works { position: relative; overflow: hidden; }
.hiw-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1545389336-cf090694435e?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.hiw-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(14,5,24,0.95) 0%,
    rgba(42,18,80,0.9) 55%,
    rgba(14,5,24,0.96) 100%);
}
.hiw-inner { position: relative; z-index: 2; }
.hiw-header { text-align: center; margin-bottom: clamp(48px,6vw,72px); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  background: rgba(42,18,80,0.4);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover::before { opacity: 1; }
.step-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.4); }
.step-num {
  font-family: var(--fd);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(124,58,237,0.18);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 1.6rem; margin-bottom: 12px; }
.step-title {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-body { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* Sensations */
#sensations { background: var(--pd); }
.sensations-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,100px);
  align-items: center;
}
.sens-list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.sens-item { display: flex; gap: 16px; }
.sens-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,58,237,0.15);
  border-radius: 12px;
}
.sens-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.sens-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.sens-img-wrap { position: relative; }
.sens-img-main {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
}
.sens-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gl));
  color: var(--pd);
  padding: 20px 26px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.78rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(245,158,11,0.3);
}
.sens-badge .big {
  font-family: var(--fd);
  font-size: 2.4rem;
  display: block;
  line-height: 1;
}

/* Roots / Japanese */
#roots { position: relative; overflow: hidden; }
.roots-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.roots-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,5,24,0.97), rgba(42,18,80,0.95));
}
.roots-inner { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.roots-title {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 40px;
}
.roots-title strong { font-weight: 600; }
.roots-title em    { font-style: italic; color: var(--pl); }
.kanji-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.kanji-card {
  background: rgba(42,18,80,0.5);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  transition: all 0.3s;
}
.kanji-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.5); }
.kanji {
  font-family: var(--fd);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}
.kanji-word {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--w);
  margin-bottom: 4px;
}
.kanji-def { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; }
.roots-body {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
  text-align: left;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Session Info */
#session { background: var(--pd); }
.session-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,100px);
  align-items: center;
}
.session-img-wrap { position: relative; }
.session-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}
.session-float {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 170px; height: 170px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid var(--pd);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.session-body { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.session-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.meta-box {
  background: rgba(42,18,80,0.35);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
}
.meta-val {
  font-family: var(--fd);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.meta-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }

/* Quote banner */
#quote-banner { position: relative; overflow: hidden; }
.quote-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1530026405186-ed1f139313f8?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.quote-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(14,5,24,0.96) 0%,
    rgba(42,18,80,0.9) 60%,
    rgba(14,5,24,0.92) 100%);
}
.quote-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding: clamp(60px,8vw,100px) 0;
}
.quote-text-wrap { max-width: 600px; }
blockquote {
  font-family: var(--fd);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Reiki responsive */
@media (max-width: 960px) {
  .what-inner, .sensations-inner, .session-inner { grid-template-columns: 1fr; }
  .what-img-main, .sens-img-main, .session-img { height: 360px; }
  .what-img-float, .session-float { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .quote-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .steps-grid, .kanji-row { grid-template-columns: 1fr; }
  .session-meta { grid-template-columns: 1fr 1fr; }
  .sens-badge { display: none; }
}


/* ═══════════════════════════════════════════
   BENEFITS OF REIKI PAGE
   ═══════════════════════════════════════════ */

#intro { background: var(--pd); }
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,100px);
  align-items: center;
}
.intro-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
}
.intro-body { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.intro-body strong { color: var(--w); font-weight: 500; }

#benefits { background: #0b0316; position: relative; }
#benefits::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pa), transparent);
}
.benefits-header { text-align: center; margin-bottom: clamp(48px,6vw,72px); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.benefit-card {
  background: linear-gradient(135deg, rgba(42,18,80,0.4), rgba(14,5,24,0.7));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.benefit-icon { font-size: 1.8rem; margin-bottom: 14px; }
.benefit-name {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.benefit-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 960px) {
  .intro-inner { grid-template-columns: 1fr; }
  .intro-img { height: 360px; }
}


/* ═══════════════════════════════════════════
   ORACLE READING PAGE
   ═══════════════════════════════════════════ */

.oracle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,100px);
  align-items: center;
}
.oracle-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}
.oracle-body { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 14px; }
.oracle-body strong { color: var(--w); font-weight: 500; }

.reading-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: clamp(48px,6vw,72px);
}
.reading-card {
  background: linear-gradient(135deg, rgba(42,18,80,0.45), rgba(14,5,24,0.7));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}
.reading-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.reading-icon  { font-size: 1.8rem; margin-bottom: 14px; }
.reading-title {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.reading-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 960px) {
  .oracle-split { grid-template-columns: 1fr; }
  .oracle-img   { height: 360px; }
}


/* ═══════════════════════════════════════════
   SPIRITUAL COUNSELING PAGE
   ═══════════════════════════════════════════ */

.counseling-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,100px);
  align-items: center;
}
.counseling-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.modalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.modality-card {
  background: linear-gradient(135deg, rgba(42,18,80,0.4), rgba(14,5,24,0.7));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  padding: 30px 26px;
  transition: all 0.3s var(--ease);
}
.modality-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.45);
}
.modality-icon { font-size: 1.6rem; margin-bottom: 12px; }
.modality-name {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.modality-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 960px) {
  .counseling-intro { grid-template-columns: 1fr; }
  .counseling-img   { height: 360px; }
}


/* ═══════════════════════════════════════════
   SCHEDULE APPOINTMENT PAGE
   ═══════════════════════════════════════════ */

#booking { background: #0b0316; position: relative; }
#booking::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pa), transparent);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px,7vw,80px);
  align-items: start;
}
.service-list { display: flex; flex-direction: column; gap: 14px; }
.service-option {
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 16px;
  padding: 20px 22px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-option:hover,
.service-option.active {
  border-color: var(--pa);
  background: rgba(124,58,237,0.1);
}
.service-option.active { border-color: var(--gold); background: rgba(245,158,11,0.08); }
.svc-opt-icon { font-size: 1.4rem; flex-shrink: 0; }
.svc-opt-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.svc-opt-price { font-size: 0.8rem; color: var(--gold); }
.svc-opt-duration { font-size: 0.75rem; color: var(--muted); }

.booking-form-card {
  background: linear-gradient(135deg, rgba(42,18,80,0.4), rgba(14,5,24,0.7));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 24px;
  padding: clamp(28px,4vw,48px);
}
.form-title {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--w);
  font-family: var(--fb);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-control:focus { border-color: var(--pa); }
.form-control::placeholder { color: rgba(196,181,216,0.4); }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 110px; }
.char-count { font-size: 0.72rem; color: var(--muted); text-align: right; margin-top: 4px; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success-icon { font-size: 3rem; color: var(--gold); margin-bottom: 16px; }
.form-success-title {
  font-family: var(--fd);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.form-success-body { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 960px) {
  .booking-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */

#contact { background: #0b0316; position: relative; }
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pa), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px,7vw,80px);
  align-items: start;
}
.contact-info-title {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 12px 0 18px;
}
.contact-info-title strong { font-weight: 600; }
.contact-info-body { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.info-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(42,18,80,0.3);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 16px;
  padding: 18px 20px;
  transition: all 0.2s;
}
.info-card:hover { border-color: rgba(124,58,237,0.45); background: rgba(42,18,80,0.5); }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-card-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-card-value { font-size: 0.88rem; color: var(--w); line-height: 1.5; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--muted);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-icon { font-size: 1rem; }
.contact-form-wrap {
  background: linear-gradient(135deg, rgba(42,18,80,0.4), rgba(14,5,24,0.7));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 24px;
  padding: clamp(28px,4vw,48px);
}

#map-section { background: var(--pd); }
.map-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(48px,7vw,80px);
  align-items: center;
}
.map-frame {
  border-radius: 24px;
  overflow: hidden;
  height: 450px;
  border: 1px solid rgba(124,58,237,0.2);
}
.map-frame iframe { width: 100%; height: 100%; border: none; }
.map-detail-title {
  font-family: var(--fd);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}
.map-detail-title strong { font-weight: 600; }
.hours-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.hours-row { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid rgba(124,58,237,0.1); }
.hours-day  { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.hours-time { font-size: 0.88rem; font-weight: 600; }
.hours-time.gold   { color: var(--gold); }
.hours-time.closed { color: rgba(255,255,255,0.3); }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-inner    { grid-template-columns: 1fr; }
  .map-frame    { height: 300px; }
}


/* ═══════════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════════ */

#blog { background: #0b0316; position: relative; }
#blog::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pa), transparent);
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding: clamp(60px,8vw,100px) 0;
}
.featured-post {
  background: linear-gradient(135deg, rgba(42,18,80,0.4), rgba(14,5,24,0.7));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
}
.featured-img-wrap { position: relative; overflow: hidden; }
.featured-img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.6s var(--ease); }
.featured-post:hover .featured-img { transform: scale(1.03); }
.featured-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gl));
  color: var(--pd);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 28px 8px;
  font-size: 0.75rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.cat { color: var(--pl); font-weight: 600; }
.dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(196,181,216,0.4); }
.featured-title {
  font-family: var(--fd);
  font-size: clamp(1.5rem,3vw,2.2rem);
  font-weight: 600;
  padding: 0 28px 12px;
  line-height: 1.2;
}
.featured-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.7; padding: 0 28px 16px; }
.principles-list {
  margin: 0 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.principle {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  padding: 10px 16px;
  background: rgba(124,58,237,0.1);
  border-left: 2px solid var(--gold);
  border-radius: 0 10px 10px 0;
  line-height: 1.5;
}

.posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.posts-header-title { font-family: var(--fd); font-size: 1.5rem; font-weight: 600; }
.posts-list { display: flex; flex-direction: column; gap: 20px; }
.post-card {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, rgba(42,18,80,0.3), rgba(14,5,24,0.6));
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.post-card:hover { transform: translateY(-3px); border-color: rgba(124,58,237,0.4); }
.post-card-img { width: 160px; height: 130px; object-fit: cover; flex-shrink: 0; }
.post-card-body { padding: 18px 20px 18px 0; display: flex; flex-direction: column; justify-content: center; }
.post-meta { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--muted); margin-bottom: 8px; flex-wrap: wrap; }
.post-title { font-family: var(--fd); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.post-excerpt { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.read-more { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: linear-gradient(135deg, rgba(42,18,80,0.4), rgba(14,5,24,0.7));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 18px;
  padding: 24px;
}
.sidebar-title { font-family: var(--fd); font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; }
.search-wrap { position: relative; }
.search-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 10px;
  padding: 11px 40px 11px 14px;
  color: var(--w);
  font-family: var(--fb);
  font-size: 0.85rem;
  outline: none;
}
.search-input:focus { border-color: var(--pa); }
.search-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 0.85rem; }
.cat-list { display: flex; flex-direction: column; gap: 8px; }
.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(124,58,237,0.1);
  cursor: pointer;
  transition: color 0.2s;
}
.cat-item:hover { color: var(--w); }
.cat-count {
  background: rgba(124,58,237,0.2);
  color: var(--pl);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}
.recent-list { display: flex; flex-direction: column; gap: 14px; }
.recent-item { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.recent-img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.recent-title { font-size: 0.82rem; font-weight: 600; line-height: 1.35; margin-bottom: 4px; }
.recent-date  { font-size: 0.72rem; color: var(--muted); }
.newsletter-body { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.newsletter-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--w);
  font-family: var(--fb);
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 10px;
}
.newsletter-input:focus { border-color: var(--pa); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border: 1px solid rgba(124,58,237,0.28);
  border-radius: 20px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.tag:hover { border-color: var(--pa); color: var(--pl); }

@media (max-width: 1060px) {
  .blog-layout { grid-template-columns: 1fr 280px; gap: 32px; }
}
@media (max-width: 860px) {
  .blog-layout  { grid-template-columns: 1fr; }
  .post-card-img { width: 120px; height: 110px; }
}
@media (max-width: 500px) {
  .post-card { flex-direction: column; }
  .post-card-img { width: 100%; height: 200px; }
  .post-card-body { padding: 16px; }
  .featured-post .btn { margin: 0 28px 28px; }
  .principles-list { margin: 0 16px 20px; }
}


/* ═══════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════ */

#checkout-section { background: #0b0316; position: relative; }
#checkout-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pa), transparent);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px,6vw,72px);
  align-items: start;
}
.checkout-form-card,
.order-summary-card {
  background: linear-gradient(135deg, rgba(42,18,80,0.4), rgba(14,5,24,0.7));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 24px;
  padding: clamp(24px,4vw,40px);
}
.checkout-section-title {
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(124,58,237,0.15);
}
.order-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(124,58,237,0.1);
}
.order-line-img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.order-line-info { flex: 1; }
.order-line-name  { font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.order-line-price { font-size: 0.82rem; color: var(--gold); }
.order-totals { margin-top: 20px; }
.order-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 8px 0;
  color: var(--muted);
}
.order-row.total { font-size: 1.05rem; font-weight: 700; color: var(--w); padding-top: 16px; margin-top: 8px; border-top: 1px solid rgba(124,58,237,0.2); }
.order-row.total span:last-child { color: var(--gold); font-family: var(--fd); font-size: 1.3rem; }

.payment-icons { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.payment-icon {
  padding: 6px 14px;
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--muted);
}

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


/* ═══════════════════════════════════════════
   VIBE TRIBE NOTIONS PAGE (about/landing)
   ═══════════════════════════════════════════ */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,100px);
  align-items: center;
}
.about-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: linear-gradient(135deg, rgba(42,18,80,0.4), rgba(14,5,24,0.7));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.4); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--fd);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.testimonial-author { font-size: 0.78rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; }

@media (max-width: 960px) {
  .about-split { grid-template-columns: 1fr; }
  .about-img   { height: 360px; }
}
