/* Mahakaalaghori Astrology Services — Design System */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #050203;
  --bg-charcoal: #0c0809;
  --bg-elevated: #140c0e;
  --gold: #d4af37;
  --gold-light: #f0d878;
  --gold-dark: #8b6914;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --crimson: #8b0000;
  --crimson-bright: #c41e1e;
  --crimson-glow: rgba(196, 30, 30, 0.4);
  --smoke-orange: #c45c26;
  --text: #f5f0e8;
  --text-muted: #b8a990;
  --text-dim: #7a6e5c;
  --border-gold: rgba(212, 175, 55, 0.35);
  --font-display: 'Cinzel', serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --header-h: 78px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: var(--header-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; border: none; background: none; }
button { cursor: pointer; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 70%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(139, 0, 0, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 80%, rgba(196, 92, 38, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
    var(--bg-deep);
}

.ember-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ember {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold), 0 0 16px var(--smoke-orange);
  opacity: 0;
  animation: ember-rise linear infinite;
}

@keyframes ember-rise {
  0% { opacity: 0; transform: translateY(0) scale(0.4); }
  15% { opacity: 0.85; }
  85% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(5, 2, 3, 0.92);
  border-bottom: 1px solid var(--border-gold);
  transition:
    top 0.45s var(--ease-out),
    background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

/* Blur on a layer so it does not trap position:fixed mobile nav */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 2, 3, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(5, 2, 3, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.site-header.header-hidden {
  top: calc(-1 * var(--header-h) - 4px);
  box-shadow: none;
}

.site-header.nav-open {
  top: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, 92%);
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--gold-glow));
  transition: transform 0.4s var(--ease-spring);
}

.brand:hover .brand-logo { transform: scale(1.06) rotate(-3deg); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand-sub {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.9rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-bright) 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 20px var(--crimson-glow);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  flex-shrink: 0;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--crimson-glow);
}

.header-cta svg { width: 16px; height: 16px; fill: currentColor; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  z-index: 1100;
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  color: #1a0a05;
  box-shadow: 0 6px 28px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px var(--gold-glow);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.btn-crimson {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-bright));
  color: #fff;
  box-shadow: 0 6px 24px var(--crimson-glow);
}

.btn-crimson:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px var(--crimson-glow);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero--xl {
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  height: calc(100svh - var(--header-h));
  height: calc(100dvh - var(--header-h));
}

.hero-slider {
  background: var(--bg-deep);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
}

.hero-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
}

.hero-slide__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 2, 3, 0.88) 0%, rgba(5, 2, 3, 0.55) 48%, rgba(5, 2, 3, 0.35) 100%),
    linear-gradient(to top, rgba(5, 2, 3, 0.82) 0%, transparent 42%);
  pointer-events: none;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: min(1180px, 92%);
  margin-inline: auto;
  padding: 5rem 0 6rem;
  max-width: 640px;
  margin-left: max(4%, calc((100% - 1180px) / 2));
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out) 0.2s, transform 0.8s var(--ease-out) 0.2s;
}

.hero-slide.is-active .hero-slide__content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide__brand {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.65);
}

.hero-slide__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.8vw, 2.65rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #f5efe2;
  margin-bottom: 0.9rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.hero-slide__text {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 28ch;
}

.hero-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 4.5rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
}

.hero-slider__arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  background: rgba(5, 2, 3, 0.45);
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

.hero-slider__arrow:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  transform: scale(1.06);
}

.hero-slider__dots {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.hero-slider__dots button {
  width: 28px;
  height: 3px;
  background: rgba(245, 240, 232, 0.3);
  border-radius: 2px;
  transition: background 0.3s, width 0.35s var(--ease-out);
}

.hero-slider__dots button.is-active {
  width: 42px;
  background: var(--gold);
}

.hero-scroll {
  bottom: 1.25rem;
}

@keyframes hero-ken {
  from { transform: scale(1.02) translate(0, 0); }
  to { transform: scale(1.08) translate(-1%, -0.5%); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 2, 3, 0.75) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 0 5rem;
  width: min(1180px, 92%);
  margin-inline: auto;
  min-height: 100%;
}

.hero-content--cta {
  align-items: center;
  padding-bottom: 4.5rem;
}

.hero .btn-group {
  animation: fade-up 0.9s 0.2s var(--ease-out) both;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}

.hero-scroll .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-lead {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head .section-lead {
  margin-inline: auto;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.ornament::before,
.ornament::after {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-icon {
  color: var(--gold);
  font-size: 0.9rem;
}

.trust-strip {
  border-block: 1px solid var(--border-gold);
  background: linear-gradient(180deg, rgba(20, 12, 14, 0.9), rgba(5, 2, 3, 0.6));
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-item { padding: 0.5rem; }

.trust-item .icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-tile {
  position: relative;
  padding: 2rem 1.75rem;
  background: transparent;
  border: 1px solid var(--border-gold);
  transition: transform 0.4s var(--ease-out), background 0.4s, box-shadow 0.4s;
  overflow: hidden;
}

.service-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-tile:hover {
  transform: translateY(-6px);
  background: rgba(20, 12, 14, 0.65);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.08);
}

.service-tile:hover::before { opacity: 1; }

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.5) 0%, rgba(5, 2, 3, 0.9) 70%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 24px rgba(196, 30, 30, 0.25), inset 0 0 20px rgba(212, 175, 55, 0.1);
  transition: box-shadow 0.4s, transform 0.4s var(--ease-spring);
}

.service-tile:hover .service-icon {
  transform: scale(1.08);
  box-shadow: 0 0 36px rgba(212, 175, 55, 0.45), inset 0 0 20px rgba(212, 175, 55, 0.15);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.service-tile h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.65rem;
}

.service-tile p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-tile .link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-tile .link span { transition: transform 0.3s; }
.service-tile:hover .link span { transform: translateX(4px); }

.cta-band {
  position: relative;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.55), transparent),
    linear-gradient(180deg, var(--bg-deep), rgba(20, 12, 14, 0.9), var(--bg-deep));
  border-block: 1px solid var(--border-gold);
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.cta-band--photo {
  padding: 6rem 0;
}

.cta-band--photo::before {
  background: linear-gradient(180deg, rgba(5, 2, 3, 0.75), rgba(5, 2, 3, 0.82));
  border-block: 1px solid var(--border-gold);
  z-index: 1;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.1) brightness(0.7);
}

.section--roomy {
  padding: 7rem 0;
}

.mood-band {
  position: relative;
  min-height: 52vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-block: 1px solid var(--border-gold);
}

.mood-band__bg {
  position: absolute;
  inset: 0;
}

.mood-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-ken 28s ease-in-out alternate infinite;
}

.mood-band__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(5, 2, 3, 0.35), rgba(5, 2, 3, 0.78)),
    linear-gradient(90deg, rgba(5, 2, 3, 0.65), transparent 30%, transparent 70%, rgba(5, 2, 3, 0.65));
}

.mood-band__copy {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 0;
}

.mood-band__quote {
  font-family: var(--font-accent);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  max-width: 22ch;
  margin-inline: auto;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
}

.ritual-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-block: 1px solid var(--border-gold);
  min-height: 560px;
}

.ritual-split__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.ritual-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease-out);
}

.ritual-split:hover .ritual-split__visual img {
  transform: scale(1.04);
}

.ritual-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(139, 0, 0, 0.25), transparent 55%),
    rgba(8, 4, 5, 0.95);
}

.ritual-split__copy .section-title {
  margin-bottom: 1rem;
}

.ritual-split__copy > p:not(.section-label) {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 38ch;
  margin-bottom: 2rem;
}

.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.page-hero--tall {
  padding: 6.5rem 0 5rem;
  min-height: 48vh;
  display: flex;
  align-items: center;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: saturate(1.05) brightness(0.75);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(139, 0, 0, 0.35), transparent 70%),
    url('../images/imagebs.jpeg') center 30% / cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.page-hero--tall::before {
  display: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 2, 3, 0.55), rgba(5, 2, 3, 0.92));
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 36ch;
  margin-inline: auto;
}

.svc-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
}

.svc-jump a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.svc-jump a:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.svc-block {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: min(88vh, 760px);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}

.svc-block--flip {
  grid-template-columns: 1fr 1.15fr;
}

.svc-block--flip .svc-block__media { order: 2; }
.svc-block--flip .svc-block__body { order: 1; }

.svc-block__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.svc-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s var(--ease-out);
}

.svc-block:hover .svc-block__media img {
  transform: scale(1.05);
}

/* About story: portrait image, no crop-zoom */
.svc-block__media--story {
  min-height: 100%;
}

.svc-block__media--story img {
  object-fit: cover;
  object-position: center 18%;
}

.svc-block:hover .svc-block__media--story img {
  transform: none;
}

.svc-block__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(5, 2, 3, 0.35));
  pointer-events: none;
}

.svc-block--flip .svc-block__media::after {
  background: linear-gradient(270deg, transparent 60%, rgba(5, 2, 3, 0.35));
}

.svc-block__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4.5vw, 3.75rem);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(139, 0, 0, 0.22), transparent 50%),
    rgba(8, 4, 5, 0.96);
}

.svc-block__num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.45;
  margin-bottom: 0.35rem;
}

.svc-block__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin: 0.35rem 0 1rem;
  line-height: 1.2;
}

.svc-block__body > p:not(.section-label):not(.svc-block__num) {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.35rem;
  max-width: 42ch;
}

.svc-list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.svc-list li::before {
  content: 'ॐ';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.mood-band--short {
  min-height: 38vh;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.about-pillar {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border-gold);
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06), transparent 55%);
  transition: transform 0.35s var(--ease-out), background 0.35s;
}

.about-pillar:hover {
  transform: translateY(-4px);
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.12), transparent 55%);
}

.about-pillar__icon {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.about-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.about-pillar p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.journey-steps {
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 820px;
  margin-inline: auto;
}

.journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.journey-step:last-child { border-bottom: none; }

.journey-step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.5;
}

.journey-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
}

.journey-step p {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 48ch;
}

/* Blog showcase cards */
.blog-showcase {
  display: grid;
  gap: 2rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--border-gold);
  overflow: hidden;
  background: rgba(8, 4, 5, 0.7);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(212, 175, 55, 0.08);
}

.blog-card__media {
  display: block;
  min-height: 260px;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}

.blog-card__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-card__body h2 a:hover { color: var(--gold-light); }

.blog-card__body > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.blog-card .read {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card .read span { transition: transform 0.3s; }
.blog-card:hover .read span { transform: translateX(4px); }

.contact-layout--wide {
  align-items: stretch;
}

.contact-side-visual {
  margin-top: 1.75rem;
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

.contact-side-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.contact-form-section {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* Stats */
.stats-band {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
  border-block: 1px solid var(--border-gold);
}

.stats-band__bg,
.stats-band__veil {
  position: absolute;
  inset: 0;
}

.stats-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.stats-band__veil {
  background: linear-gradient(180deg, rgba(5, 2, 3, 0.75), rgba(5, 2, 3, 0.88));
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item .stat-num,
.stat-item .stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.stat-item p {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.process-card {
  padding: 1.75rem 1.25rem;
  border-top: 1px solid var(--border-gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), transparent 60%);
  transition: transform 0.35s var(--ease-out), background 0.35s;
}

.process-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12), transparent 70%);
}

.process-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.45;
  display: block;
  margin-bottom: 0.75rem;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  color: var(--gold-light);
}

.process-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139, 0, 0, 0.2), transparent 55%),
    transparent;
  border-block: 1px solid rgba(212, 175, 55, 0.15);
}

.testi-slider {
  max-width: 760px;
  margin-inline: auto;
  position: relative;
}

.testi-track {
  position: relative;
  min-height: 240px;
}

.testi-card {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 2.25rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-gold);
  background: rgba(12, 6, 8, 0.85);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.testi-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.testi-card p {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testi-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testi-card footer span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.testi-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  transition: background 0.25s, transform 0.25s;
}

.testi-dots button.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

/* FAQ */
.faq-wrap { max-width: 800px; }

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(10, 5, 6, 0.7);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.35rem;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  animation: faq-in 0.35s var(--ease-out);
}

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.banner-showcase {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border-gold);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139, 0, 0, 0.22), transparent 55%),
    rgba(5, 2, 3, 0.4);
}

.banner-showcase .section-head {
  margin-bottom: 2rem;
}

.banner-showcase__frame {
  margin: 0;
  border: 1px solid var(--border-gold);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(212, 175, 55, 0.12);
  overflow: hidden;
  background: #050203;
  position: relative;
}

.banner-showcase__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
  margin: 10px;
  pointer-events: none;
  z-index: 1;
}

.banner-showcase__frame img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-showcase__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* —— Home ritual video showcase —— */
.video-showcase {
  padding: 4.75rem 0 5rem;
  border-block: 1px solid rgba(212, 175, 55, 0.18);
  background:
    radial-gradient(ellipse 55% 45% at 50% 20%, rgba(139, 0, 0, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 35% at 80% 80%, rgba(212, 175, 55, 0.08), transparent 55%),
    rgba(8, 4, 5, 0.92);
}

.video-showcase .section-head {
  margin-bottom: 2.25rem;
}

.video-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  width: min(980px, 96%);
  margin-inline: auto;
}

.video-showcase__frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(212, 175, 55, 0.12),
    inset 0 0 0 1px rgba(212, 175, 55, 0.1);
  background: #050203;
  line-height: 0;
}

.video-showcase__frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  pointer-events: none;
  z-index: 2;
}

.video-showcase__frame::after {
  display: none;
}

.video-showcase__player {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
  object-position: center;
  background: #050203;
}

@media (max-width: 900px) {
  .video-showcase__grid {
    width: min(720px, 94%);
    gap: 1rem;
  }
  .video-showcase__player {
    max-height: min(70vh, 700px);
  }
}

@media (max-width: 680px) {
  .video-showcase {
    padding: 3.5rem 0 3.75rem;
  }
  .video-showcase__grid {
    grid-template-columns: 1fr;
    width: min(420px, 92%);
    gap: 1.15rem;
  }
  .video-showcase__player {
    max-height: min(72vh, 640px);
  }
}

@media (max-width: 480px) {
  .video-showcase__grid {
    width: min(100%, 94%);
  }
  .video-showcase__player {
    max-height: min(70vh, 580px);
  }
}

/* SEO keyword tiles */
.seo-keywords {
  padding: 5rem 0 4.5rem;
  border-block: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(180deg, rgba(12, 6, 8, 0.95), rgba(5, 2, 3, 0.98));
}

.seo-keywords--home {
  padding: 4.5rem 0;
}

.kw-tiles {
  display: grid;
  gap: 1rem;
}

.kw-tiles--home {
  grid-template-columns: repeat(4, 1fr);
}

.kw-tiles--full {
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.kw-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  min-height: 140px;
  background: #0a0506;
  transition: transform 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s;
}

.kw-tiles--full .kw-tile {
  min-height: 118px;
}

.kw-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
  filter: brightness(0.55) saturate(1.05);
}

.kw-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 2, 3, 0.92) 0%, rgba(5, 2, 3, 0.35) 55%, transparent 100%);
  z-index: 1;
}

.kw-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.85rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #f3e7c8;
  text-align: center;
}

.kw-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 24px rgba(212, 175, 55, 0.12);
}

.kw-tile:hover img {
  transform: scale(1.08);
  filter: brightness(0.65) saturate(1.1);
}

.seo-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.75rem;
}

/* Keyword detail pages */
.detail-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.detail-hero__bg {
  position: absolute;
  inset: 0;
}

.detail-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.detail-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 2, 3, 0.95), rgba(5, 2, 3, 0.45));
}

.detail-hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 3.5rem 0 2.5rem;
}

.detail-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin: 0.5rem 0 0.75rem;
}

.detail-hero__content p {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 48ch;
}

.detail-intro {
  padding: 3.5rem 0 2rem;
}

.detail-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.detail-intro__media {
  border: 1px solid var(--border-gold);
  overflow: hidden;
  min-height: 280px;
}

.detail-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.detail-intro__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
}

.detail-intro__copy p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.sub-boxes {
  padding: 1rem 0 4.5rem;
}

.sub-boxes__head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.sub-box-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.sub-box-grid .sub-box {
  grid-column: span 2;
}

.sub-box-grid .sub-box:nth-child(4) {
  grid-column: 2 / span 2;
}

.sub-box-grid .sub-box:nth-child(5) {
  grid-column: 4 / span 2;
}

.sub-box {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(10, 5, 6, 0.85);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.3s;
}

.sub-box:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 175, 55, 0.1);
}

.sub-box__img {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.sub-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.sub-box:hover .sub-box__img img {
  transform: scale(1.06);
}

.sub-box__body {
  padding: 1.15rem 1.1rem 1.35rem;
}

.sub-box__body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.sub-box__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.sub-box__body .link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 960px) {
  .detail-intro__grid {
    grid-template-columns: 1fr;
  }
  .sub-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-box-grid .sub-box,
  .sub-box-grid .sub-box:nth-child(4),
  .sub-box-grid .sub-box:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .sub-box-grid {
    grid-template-columns: 1fr;
  }
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-visual img {
  width: 100%;
  border: 1px solid var(--border-gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.12);
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  z-index: -1;
  pointer-events: none;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pillar {
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--border-gold);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.service-detail:last-child { border-bottom: none; }

.service-detail .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.35;
}

.service-detail h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-detail p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 60ch;
}

.service-detail ul { display: grid; gap: 0.5rem; }

.service-detail li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-detail li::before {
  content: 'ॐ';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-article {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 1.5rem;
  transition: transform 0.35s var(--ease-out);
}

.blog-article:hover { transform: translateY(-4px); }

.blog-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.blog-article h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-article h2 a:hover { color: var(--gold-light); }

.blog-article p {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.blog-article .read {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-body {
  max-width: 720px;
  margin-inline: auto;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 2rem 0 0.85rem;
}

.article-body p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

.article-body ul {
  margin: 0 0 1.25rem 1.25rem;
  list-style: disc;
  color: var(--text-muted);
}

.article-body li { margin-bottom: 0.4rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-channels { display: grid; gap: 1.25rem; }

.channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.channel-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  flex-shrink: 0;
}

.channel-icon svg { width: 20px; height: 20px; fill: currentColor; }

.channel h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.channel a, .channel p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.channel a:hover { color: var(--gold-light); }

.contact-form-wrap {
  padding: 2rem;
  border: 1px solid var(--border-gold);
  background: rgba(20, 12, 14, 0.5);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.form-row label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(5, 2, 3, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-row textarea { min-height: 130px; resize: vertical; }
.form-row select option { background: var(--bg-charcoal); }

.form-success {
  display: none;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.95rem;
  text-align: center;
}

.form-success.show { display: block; }

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border-gold);
  background: linear-gradient(180deg, rgba(20, 12, 14, 0.88), var(--bg-deep));
  padding: 3.25rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.15fr;
  gap: 2.25rem 2.5rem;
  margin-bottom: 2.25rem;
}

.footer-brand img {
  width: 88px;
  margin-bottom: 0.9rem;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 32ch;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.28rem 0;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.footer-kw {
  margin: 0 auto 1.75rem;
  padding: 1.65rem 0 0.25rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-kw__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
}

.footer-kw__head h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-kw__head a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-kw__head a:hover { color: var(--gold-light); }

.footer-kw__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem 1.5rem;
}

.footer-kw__col h5 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-kw__col a {
  display: block;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--text-muted);
  padding: 0.28rem 0;
  transition: color 0.2s, transform 0.2s;
}

.footer-kw__col a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-keywords {
  margin: 0.5rem auto 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-keywords h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-keyword-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
}

.footer-keyword-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-keyword-links a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease-spring);
  animation: pulse-wa 2.5s ease-in-out infinite;
}

.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.12); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 960px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-kw__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .hero-slide__content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
    padding: 4rem 0 7rem;
  }
  .hero-slide__veil {
    background:
      linear-gradient(to top, rgba(5, 2, 3, 0.92) 0%, rgba(5, 2, 3, 0.55) 45%, rgba(5, 2, 3, 0.4) 100%);
  }
  .hero-slide__text { max-width: 32ch; }
  .hero-slider__controls { bottom: 5rem; }
  .ritual-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .ritual-split__visual {
    min-height: 300px;
    max-height: 360px;
  }
  .mood-band { min-height: 42vh; }
  .section--roomy { padding: 5rem 0; }
  .svc-block,
  .svc-block--flip {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .svc-block--flip .svc-block__media,
  .svc-block--flip .svc-block__body { order: initial; }
  .svc-block__media {
    min-height: 280px;
    max-height: 380px;
  }
  .page-hero--tall {
    min-height: 40vh;
    padding: 4.5rem 0 3.5rem;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
  .blog-card {
    grid-template-columns: 1fr;
  }
  .blog-card__media {
    min-height: 220px;
    max-height: 280px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kw-tiles--home,
  .kw-tiles--full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2.5rem;
    background: rgba(5, 2, 3, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1050;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.35rem;
    font-family: var(--font-display);
    padding: 0.85rem 1.5rem;
    color: var(--text);
  }

  .nav-links a::after { display: none; }

  .header-cta { display: none; }
  .brand-text { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-kw__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-detail { grid-template-columns: 1fr; gap: 0.5rem; }
  .hero,
  .hero--xl {
    min-height: calc(100svh - var(--header-h));
    height: calc(100svh - var(--header-h));
  }
  .hero-content { padding: 3rem 0 4rem; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .kw-tiles--home,
  .kw-tiles--full {
    grid-template-columns: 1fr 1fr;
  }
  .kw-tile {
    min-height: 110px;
  }
  .kw-tile span {
    font-size: 0.72rem;
    padding: 0.65rem 0.45rem;
  }
  .kw-focus {
    grid-template-columns: 1fr;
  }
  .kw-focus__item--featured {
    grid-column: auto;
    min-height: 220px;
  }
  .svc-core__grid {
    grid-template-columns: 1fr;
  }
  .page-hero--svc {
    min-height: 42vh;
    padding: 2.5rem 0 2.75rem;
  }
  .page-hero--svc h1 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }
}

/* —— Services hub (keyword-first) —— */
.svc-hub [id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.page-hero--svc {
  min-height: 48vh;
  padding: 3.25rem 0 3.5rem;
  text-align: center;
}

.page-hero--svc h1 {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
}

.page-hero--svc p {
  max-width: 42ch;
}

.kw-focus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.kw-focus__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 168px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: #0a0506;
  transition: transform 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s;
}

.kw-focus__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(1.05);
  transition: transform 0.65s var(--ease-out), filter 0.4s;
}

.kw-focus__item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5, 2, 3, 0.95) 0%, rgba(5, 2, 3, 0.45) 55%, transparent 100%);
  pointer-events: none;
}

.kw-focus__body {
  position: relative;
  z-index: 2;
  padding: 1rem 1.05rem 1.15rem;
}

.kw-focus__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.45rem;
}

.kw-focus__item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: #f3e7c8;
  margin-bottom: 0.35rem;
}

.kw-focus__item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.55rem;
}

.kw-focus__cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.kw-focus__item--featured {
  grid-column: span 2;
  min-height: 260px;
}

.kw-focus__item--featured h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.kw-focus__item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 28px rgba(212, 175, 55, 0.14);
}

.kw-focus__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(1.1);
}

.svc-core {
  padding-block: 4.5rem;
  border-block: 1px solid rgba(212, 175, 55, 0.16);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(139, 0, 0, 0.18), transparent 60%),
    rgba(8, 4, 5, 0.7);
}

.svc-core__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.svc-core__card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(135deg, rgba(20, 10, 12, 0.95), rgba(8, 4, 5, 0.98));
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.svc-core__card img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  filter: brightness(0.85);
}

.svc-core__card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.svc-core__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.svc-core__card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.kw-cats {
  padding-top: 1rem;
}

.kw-cat {
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) 1.4fr;
  gap: 1.5rem 2rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.kw-cat:last-child { border-bottom: 0; }

.kw-cat__head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.kw-cat__head p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 32ch;
}

.kw-cat__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.kw-cat__links a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.04);
  transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}

.kw-cat__links a:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .kw-focus {
    grid-template-columns: repeat(2, 1fr);
  }
  .kw-focus__item--featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .svc-core__grid {
    grid-template-columns: 1fr;
  }
  .svc-core__card {
    grid-template-columns: 96px 1fr;
  }
  .svc-core__card img {
    width: 96px;
    height: 88px;
  }
  .kw-cat {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1.4rem 0;
  }
}

/* —— Real ritual photo gallery —— */
.photo-strip {
  padding: 4.5rem 0;
  border-block: 1px solid rgba(212, 175, 55, 0.16);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(139, 0, 0, 0.16), transparent 60%),
    rgba(8, 4, 5, 0.75);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: #0a0506;
  transition: transform 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.78) saturate(1.05);
  transition: transform 0.7s var(--ease-out), filter 0.4s;
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem 0.85rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  line-height: 1.35;
  color: #f3e7c8;
  background: linear-gradient(to top, rgba(5, 2, 3, 0.94) 25%, transparent);
}

.photo-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5), 0 0 26px rgba(212, 175, 55, 0.12);
}

.photo-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1.1);
}

.photo-gallery--wide {
  grid-template-columns: repeat(3, 1fr);
}

.photo-gallery--wide .photo-card {
  aspect-ratio: 4 / 3;
}

@media (max-width: 980px) {
  .photo-gallery,
  .photo-gallery--wide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .photo-strip { padding: 3.25rem 0; }
  .photo-gallery,
  .photo-gallery--wide {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .photo-card figcaption {
    font-size: 0.68rem;
    padding: 1.35rem 0.55rem 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mood-band__bg img {
    animation: none;
    transform: none;
  }
  .hero-slide,
  .hero-slide__content {
    transition: none;
  }
  .photo-card,
  .photo-card img {
    transition: none;
  }
}
