:root {
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f6effc;
  color: #2b1738;
  --bg: #f6effc;
  --bg-soft: rgba(120, 78, 156, 0.08);
  --gold: #f1b94d;
  --gold-soft: rgba(241, 185, 77, 0.23);
  --lavender: #b387e7;
  --lavender-soft: rgba(179, 135, 231, 0.2);
  --rose: #e7b9d4;
  --rose-soft: rgba(231, 185, 212, 0.24);
  --cream: #fff7ef;
  --text: #2b1738;
  --muted: #654c72;
  --border: rgba(89, 53, 122, 0.18);
}

html[data-theme='light'] {
  color-scheme: light;
  --bg: #f7ecff;
  --bg-soft: rgba(120, 78, 156, 0.06);
  --text: #2d183a;
  --muted: #684f61;
  --border: rgba(74, 45, 84, 0.18);
}

html[data-theme='dark'] {
  color-scheme: dark;
  --bg: #1c1822;
  --bg-soft: rgba(190, 170, 228, 0.12);
  --text: #f3edf7;
  --muted: #d3c9de;
  --border: rgba(255, 255, 255, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 104px;
}

#home,
#about,
#services,
#gallery,
#contact {
  scroll-margin-top: 104px;
}

body {
  background: radial-gradient(circle at top left, rgba(196, 154, 255, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 201, 124, 0.22), transparent 26%),
    radial-gradient(circle at bottom, rgba(231, 185, 212, 0.24), transparent 18%),
    var(--bg);
  color: var(--text);
  line-height: 1.75;
}

.festival-animation {
  position: fixed;
  inset: 0;
  z-index: 40;
  overflow: hidden;
  pointer-events: none;
}

.festival-particle {
  position: absolute;
  top: -12vh;
  left: var(--left);
  color: var(--gold);
  font-size: var(--size);
  line-height: 1;
  opacity: 0;
  text-shadow: 0 0 14px currentColor;
  animation: festival-fall var(--duration) linear var(--delay) infinite;
}

.festival-animation--independence-day .festival-particle,
.festival-animation--republic-day .festival-particle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  font-size: 0;
  box-shadow: 0 0 10px currentColor;
}

@keyframes festival-fall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
    opacity: 0;
  }

  12%, 88% {
    opacity: 0.8;
  }

  100% {
    transform: translate3d(var(--drift), 120vh, 0) rotate(360deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .festival-animation {
    display: none;
  }
}

img,
video,
svg {
  max-width: 100%;
  display: block;
  height: auto;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(241, 227, 244, 0.92);
  border-bottom: 1px solid rgba(112, 80, 141, 0.12);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  left: -12px;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  line-height: 1.2;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.theme-toggle-text {
  font-size: 0.85rem;
  font-weight: 700;
}

.nav-list a {
  color: var(--text);
  transition: color 0.2s ease;
  font-weight: 500;
}

.nav-list a:hover {
  color: var(--gold);
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.2s ease;
}

.hero-advanced {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 96px 24px 64px;
  background: linear-gradient(180deg, rgba(245, 227, 242, 0.94), rgba(255, 248, 239, 0.9));
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(246, 228, 202, 0.8);
  border: 1px solid rgba(212, 164, 70, 0.7);
  box-shadow: none;
  margin-bottom: 1.4rem;
}

.hero-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(242, 201, 76, 0.65);
}

.hero-badge span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2e1a2e;
}

.hero .eyebrow {
  display: none;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0.01em;
  color: #2d183a;
}

.hero-copy {
  margin: 0.8rem 0 0;
  max-width: 680px;
  font-size: 1.1rem;
  color: #f1e6d8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(182, 146, 100, 0.38);
  background: linear-gradient(135deg, #c89d55, #b77dbd);
  color: #1d1222;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(143, 103, 160, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 12px 28px rgba(143, 103, 160, 0.22);
}

.button-secondary {
  background: rgba(174, 146, 213, 0.1);
  border-color: rgba(171, 122, 198, 0.28);
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(174, 146, 213, 0.16);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 25%, rgba(242, 201, 76, 0.24), transparent 16%),
    radial-gradient(circle at 80% 20%, rgba(196, 154, 255, 0.2), transparent 18%),
    linear-gradient(150deg, rgba(5, 4, 9, 0.88), transparent 40%);
  pointer-events: none;
  filter: blur(24px);
}

.hero-advanced {
  position: relative;
  overflow: hidden;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.feature-card {
  border-radius: 28px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255, 244, 236, 0.16), rgba(57, 16, 67, 0.22));
  border: 1px solid rgba(242, 201, 76, 0.22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.feature-card-glow {
  background: linear-gradient(135deg, rgba(222, 177, 255, 0.32), rgba(251, 224, 162, 0.25));
  border-color: rgba(242, 201, 76, 0.35);
}

.section {
  padding: 64px 24px;
}

.section-alt {
  background: transparent;
}

.section-glass {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-card,
.faq-card,
.testimonial-card,
.about-panel,
.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.eyebrow-soft {
  color: #bdb0e7;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 1rem;
}

.section p {
  color: #d4c8ba;
  max-width: 760px;
  font-size: 1.03rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: flex-start;
}

.about-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: #d7cab8;
}

.about-list li,
.contact-list li {
  margin-bottom: 0.85rem;
  padding-left: 1.4rem;
  position: relative;
}

.about-list li {
  padding-left: 0;
}

.about-list li::before,
.contact-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8bd7c6;
}

.about-list li::before {
  display: none;
}

.about-panel,
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 32px;
}

.about-panel h3 {
  margin-top: 0;
}

.why-list {
  display: grid;
  gap: 10px;
  margin: 1.2rem 0 0;
  padding: 0;
  color: var(--text);
  list-style: none;
}

.why-list li {
  position: relative;
  padding-left: 1.5rem;
}

.why-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.about-side {
  display: grid;
  gap: 24px;
  margin-top: -14px;
}

.healer-profile-placeholder {
  display: grid;
  grid-template-columns: 124px 1fr;
  align-items: center;
  min-height: 174px;
  gap: 24px;
  padding: 28px;
  border: 1px dashed rgba(242, 201, 76, 0.48);
  border-radius: 28px;
  background: rgba(242, 201, 76, 0.06);
}

.healer-photo {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(242, 201, 76, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  background: linear-gradient(135deg, rgba(196, 154, 255, 0.34), rgba(242, 201, 76, 0.25));
}

.healer-profile-placeholder .eyebrow {
  margin: 0 0 0.2rem;
}

.healer-profile-placeholder h3 {
  margin: 0;
}

.healer-profile-placeholder p:last-child {
  margin: 0.35rem 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 2.2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(242, 201, 76, 0.18);
  border-radius: 24px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 201, 76, 0.55);
  background: rgba(242, 201, 76, 0.12);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(196, 154, 255, 0.16);
  color: #f6ebff;
  font-size: 1.4rem;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: #fff;
}

.service-card p {
  margin: 0;
  color: #e8decf;
}

.gallery-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.gallery-card {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8ccbd;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}


.testimonial-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
}

.video-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.video-story-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(242, 201, 76, 0.22);
    background: rgba(255,255,255,.05);

    box-shadow: 0 12px 30px rgba(0,0,0,.18);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.video-story-card:hover{
    transform: translateY(-8px);

    border-color: rgba(242,201,76,.55);

    box-shadow:
        0 22px 50px rgba(0,0,0,.28),
        0 0 18px rgba(242,201,76,.18);
}

.video-story-card video{

    display:block;

    width:100%;

    aspect-ratio:9/16;

    object-fit:cover;

    border-radius:24px;

    transition:transform .5s ease;

}

.video-story-card:hover video{

    transform:scale(1.03);

}



.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
}

.testimonial-card p {
  margin: 0 0 1.4rem;
  color: #d6cbb9;
}

.faq-gallery-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.faq-panel,
.gallery-panel {
  display: grid;
  align-content: start;
  gap: 20px;
  height: auto;
  padding-top: 0;
}

.faq-grid {
  display: grid;
  gap: 24px;
  margin-top: 0;
  align-content: start;
}

.gallery-panel h2 {
  margin-top: 20px;
  font-size: clamp(2.05rem, 2.85vw, 2.85rem);
  line-height: normal;
}

.faq-panel > .eyebrow,
.gallery-panel > .eyebrow {
  margin-top: 0;
}

.compact-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.compact-gallery-grid .gallery-card {
  min-height: 0;
  aspect-ratio: 1;
}

.faq-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.faq-card.open {
  border-color: rgba(242, 201, 76, 0.42);
  background: rgba(242, 201, 76, 0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 0 28px 26px;
}

.faq-card.open .faq-answer {
  display: block;
}

.faq-card.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer p {
  margin: 0;
  color: #d8ccbd;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  padding: 0;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-copy > h2 {
  margin-bottom: 0.2rem;
}

.contact-copy > p {
  margin: 0;
}

.contact-reassurance {
  margin-top: 8px;
  max-width: 480px;
}

.contact-reassurance p {
  margin: 0;
}

.contact-reassurance p + p {
  margin-top: 4px;
}

.contact-reassurance strong {
  color: var(--gold);
  font-size: 1.08rem;
}

.contact-details {
  margin-top: 0.8rem;
}

.contact-details li {
  padding-left: 0;
}

.contact-details li::before {
  display: none;
}

.contact-quote {
  margin: 0.8rem 0 0 !important;
  padding: 0;
  color: var(--muted) !important;
  border: 0;
  font-family: inherit;
  font-size: 1.03rem !important;
  font-style: normal;
  line-height: 1.75;
}

.contact-list {
  margin-top: 0.4rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: #f5f2ee;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f2ee;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(72, 214, 188, 0.8);
  box-shadow: 0 0 0 4px rgba(72, 214, 188, 0.12);
}

.contact-form input[aria-invalid='true'],
.contact-form textarea[aria-invalid='true'] {
  border-color: rgba(255, 104, 104, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 104, 104, 0.14);
}

.contact-form-status {
  min-height: 1.4rem;
  margin: 0;
  color: #ffcf82;
  font-size: 0.9rem;
}

.contact-form button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.footer-advanced {
  background: linear-gradient(135deg, rgba(22, 12, 29, 0.96), rgba(11, 7, 18, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  padding-bottom: 24px;
  justify-content: space-between;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-copy-address {
  justify-self: end;
  text-align: right;
}

.footer-copy-address p {
  margin: 0 0 0.35rem;
  color: #d7cab8;
  line-height: 1.6;
}

.footer-bottom > div:first-child {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom > div:first-child > p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: var(--gold);
}

.footer-brand-name {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.footer-brand-tagline {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-note {
  margin: 0;
  color: #d8cbb4;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a,
.social-links a {
  color: var(--text);
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(242, 201, 76, 0.25);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: rgba(242, 201, 76, 0.24);
  color: #190e00;
  transform: translateY(-1px);
}

html[data-theme='light'] body {
  background: radial-gradient(circle at top left, rgba(196, 154, 255, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(242, 201, 76, 0.2), transparent 24%),
    radial-gradient(circle at bottom, rgba(255, 255, 255, 0.8), transparent 18%),
    var(--bg);
}

html[data-theme='dark'] body {
  background: radial-gradient(circle at top left, rgba(160, 126, 210, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(209, 168, 104, 0.09), transparent 22%),
    radial-gradient(circle at bottom center, rgba(80, 63, 95, 0.28), transparent 34%),
    linear-gradient(180deg, #1a1520 0%, #17131c 100%);
}

html[data-theme='light'] .site-header {
  background: rgba(244, 231, 246, 0.92);
  border-color: rgba(111, 68, 132, 0.22);
  box-shadow: 0 8px 24px rgba(91, 51, 109, 0.08);
}

html[data-theme='dark'] .site-header {
  background: rgba(25, 21, 30, 0.82);
  border-color: rgba(214, 205, 224, 0.1);
  box-shadow: 0 8px 26px rgba(9, 7, 12, 0.18);
}

html[data-theme='light'] .hero-advanced {
  background: linear-gradient(180deg, rgba(248, 240, 255, 0.9), rgba(248, 242, 236, 0.96));
}

html[data-theme='dark'] .hero-advanced {
  background: linear-gradient(180deg, rgba(27, 22, 31, 0.92), rgba(18, 15, 22, 0.96));
}

html[data-theme='light'] .hero-badge {
  background: rgba(242, 201, 76, 0.2);
  border-color: rgba(242, 201, 76, 0.45);
  box-shadow: none;
}

html[data-theme='dark'] .hero-badge {
  background: rgba(42, 34, 47, 0.88);
  border-color: rgba(214, 194, 144, 0.28);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

html[data-theme='light'] .button {
  background: linear-gradient(135deg, #c89d55, #b77dbd);
  color: #1d1222;
}

html[data-theme='dark'] .button {
  background: linear-gradient(135deg, #d3a85e, #b679c7);
  color: #1c1223;
}

html[data-theme='light'] .button-secondary {
  background: rgba(144, 116, 176, 0.09);
  color: #2d183a;
}

html[data-theme='dark'] .button-secondary {
  background: rgba(198, 174, 224, 0.09);
  color: #f3edf7;
}

html[data-theme='light'] .hero-badge span {
  color: #210f02;
}

html[data-theme='dark'] .hero-badge span {
  color: #f9eecf;
}

html[data-theme='light'] .hero-bg {
  background: radial-gradient(circle at 20% 25%, rgba(242, 201, 76, 0.18), transparent 16%),
    radial-gradient(circle at 80% 20%, rgba(196, 154, 255, 0.16), transparent 18%);
}

html[data-theme='dark'] .hero-bg {
  background: radial-gradient(circle at 20% 25%, rgba(195, 166, 94, 0.12), transparent 15%),
    radial-gradient(circle at 80% 20%, rgba(166, 126, 210, 0.12), transparent 18%);
}

html[data-theme='light'] .hero h1,
html[data-theme='light'] .service-card h3 {
  color: #2d1735;
}

html[data-theme='dark'] .hero h1,
html[data-theme='dark'] .service-card h3 {
  color: #f2ebf7;
}

html[data-theme='light'] .hero-copy,
html[data-theme='light'] .section p,
html[data-theme='light'] .service-card p,
html[data-theme='light'] .testimonial-card p,
html[data-theme='light'] .faq-card p,
html[data-theme='light'] .about-list,
html[data-theme='light'] .contact-list,
html[data-theme='light'] .gallery-card,
html[data-theme='light'] .footer-copy-address p,
html[data-theme='light'] .footer-note {
  color: var(--muted);
}

html[data-theme='dark'] .brand,
html[data-theme='dark'] .nav-list a,
html[data-theme='dark'] .theme-toggle,
html[data-theme='dark'] .theme-toggle-text,
html[data-theme='dark'] .faq-question,
html[data-theme='dark'] .footer-links a,
html[data-theme='dark'] .social-links a,
html[data-theme='dark'] .footer-copy-address p,
html[data-theme='dark'] .footer-note,
html[data-theme='dark'] .hero-copy,
html[data-theme='dark'] .section p,
html[data-theme='dark'] .service-card p,
html[data-theme='dark'] .testimonial-card p,
html[data-theme='dark'] .faq-card p,
html[data-theme='dark'] .about-list,
html[data-theme='dark'] .contact-list,
html[data-theme='dark'] .gallery-card,
html[data-theme='dark'] .footer-copy-address p,
html[data-theme='dark'] .footer-note {
  color: #f4ecff;
}

html[data-theme='light'] .section-alt {
  background: transparent;
}

html[data-theme='dark'] .section-alt {
  background: transparent;
}

html[data-theme='light'] .section-glass {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(95, 66, 115, 0.08);
}

html[data-theme='dark'] .section-glass {
  background: rgba(39, 32, 45, 0.34);
  border-color: rgba(255, 255, 255, 0.04);
}

html[data-theme='light'] .feature-card,
html[data-theme='light'] .gallery-card,
html[data-theme='light'] .testimonial-card,
html[data-theme='light'] .faq-card,
html[data-theme='light'] .about-panel,
html[data-theme='light'] .contact-card,
html[data-theme='light'] .service-card {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(103, 77, 124, 0.08);
}

html[data-theme='dark'] .feature-card,
html[data-theme='dark'] .gallery-card,
html[data-theme='dark'] .testimonial-card,
html[data-theme='dark'] .faq-card,
html[data-theme='dark'] .about-panel,
html[data-theme='dark'] .contact-card,
html[data-theme='dark'] .service-card {
  background: rgba(37, 30, 42, 0.56);
  border-color: rgba(234, 223, 239, 0.07);
}

html[data-theme='light'] .feature-card-glow {
  background: linear-gradient(135deg, rgba(222, 177, 255, 0.42), rgba(251, 224, 162, 0.42));
}

html[data-theme='dark'] .feature-card-glow {
  background: linear-gradient(135deg, rgba(151, 103, 210, 0.26), rgba(223, 163, 88, 0.18));
}

html[data-theme='light'] .contact-form label,
html[data-theme='light'] .contact-form input,
html[data-theme='light'] .contact-form textarea {
  color: var(--text);
}

html[data-theme='dark'] .contact-form label,
html[data-theme='dark'] .contact-form input,
html[data-theme='dark'] .contact-form textarea {
  color: #f4ebff;
}

html[data-theme='light'] .contact-form input,
html[data-theme='light'] .contact-form textarea {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--border);
}

html[data-theme='dark'] .contact-form input,
html[data-theme='dark'] .contact-form textarea {
  background: rgba(17, 11, 19, 0.65);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme='light'] .footer-advanced {
  background: linear-gradient(135deg, rgba(247, 237, 247, 0.9), rgba(255, 248, 237, 0.9));
  border-color: rgba(111, 68, 132, 0.12);
}

html[data-theme='dark'] .footer-advanced {
  background: linear-gradient(135deg, rgba(22, 18, 25, 0.96), rgba(15, 12, 18, 0.96));
  border-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1060px) {
  .hero-advanced,
  .split-grid,
  .testimonial-grid,
  .gallery-grid,
  .faq-gallery-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-advanced {
    padding-top: 80px;
  }

  .hero-content {
    order: 0;
  }

  .hero-visual {
    order: 1;
  }

}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }

  #home,
  #about,
  #services,
  #gallery,
  #contact {
    scroll-margin-top: 92px;
  }

  .section {
    padding: 42px 18px;
  }

  #about {
    padding-bottom: 34px;
  }

  #services {
    padding-top: 38px;
  }

  .header-inner {
    padding: 18px 18px;
    gap: 12px;
  }

  .brand {
    left: 0;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
  }

  .nav-list {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    margin-left: 0;
    gap: 16px;
    padding: 24px;
    background: rgba(5, 6, 8, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  html[data-theme='light'] .nav-list {
    background: rgba(244, 231, 246, 0.98);
    border-color: rgba(111, 68, 132, 0.22);
  }

  .nav-list.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom > div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-copy-address {
    justify-self: start;
    text-align: left;
  }

  .hero-advanced {
    padding: 64px 18px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.25rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .video-stories-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(4, minmax(78vw, 1fr));
    grid-auto-columns: minmax(78vw, 1fr);
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 18px 8px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .video-stories-grid::-webkit-scrollbar {
    display: none;
  }

  .video-story-card {
    scroll-snap-align: start;
  }

  .compact-gallery-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(4, minmax(78vw, 1fr));
    grid-auto-columns: minmax(78vw, 1fr);
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 18px 8px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .compact-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .compact-gallery-grid .gallery-card {
    scroll-snap-align: start;
  }

  .healer-profile-placeholder {
    grid-template-columns: 1fr;
  }

  .about-side {
    margin-top: 0;
  }

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

  .faq-question {
    padding: 22px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 22px 22px;
  }
}

@media (max-width: 560px) {
  .theme-toggle-text {
    display: none;
  }

  .theme-toggle {
    padding: 9px 11px;
  }
}

@media (max-width: 480px) {
  .brand span {
    letter-spacing: 0.08em;
  }

  .section h2 {
    font-size: 2rem;
  }

  .eyebrow-soft {
    font-size: 0.84rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
  }

  .button {
    padding: 13px 18px;
    font-size: 0.96rem;
  }
}
/* Flip Card */
/* Flip Card */

.flip-card{
    perspective:1000px;
    cursor:pointer;
}

.flip-card-inner{
    position:relative;
    width:100%;
    height:100%;
    min-height:320px;
    transition:transform .8s;
    transform-style:preserve-3d;
}

.flip-card:hover .flip-card-inner{
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back{

    position:absolute;
    inset:0;

    border-radius:24px;

    backface-visibility:hidden;

}

.flip-card-front{

    padding:28px;
    background:rgba(255,255,255,.06);

}

.flip-card-back{

    transform:rotateY(180deg);

}

.flip-card-back img{

    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:24px;

}

@media (hover: none) {

    .flip-card:active .flip-card-inner {
        transform: rotateY(180deg);
    }

}