@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Manrope:wght@300;400;500;600;700&family=Noto+Sans+Devanagari:wght@300;400;500;600;700&family=Tiro+Devanagari+Hindi:ital@0;1&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--color-dark-text);
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.875rem, 3.2vw, 3rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 600;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

.page-shell {
  font-family: var(--font-body);
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-form {
  width: 100%;
  max-width: var(--container-form);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-prose {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-article {
  width: 100%;
  max-width: var(--container-article);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.font-display {
  font-family: var(--font-display);
}

.font-body {
  font-family: var(--font-body);
}

.premium-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.text-small {
  font-size: 13px;
  line-height: 1.6;
}

.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 40%, var(--color-gold) 60%, transparent);
}

.gold-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 163, 93, 0.4) 40%, rgba(201, 163, 93, 0.4) 60%, transparent);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--color-navy);
  color: var(--color-cream);
  padding: 8px 12px;
  border-radius: 6px;
}

.skip-link:focus {
  left: 8px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.7s ease forwards;
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-orbit-slow {
  animation: orbit 40s linear infinite;
}

.animate-orbit-medium {
  animation: orbit 25s linear infinite;
}

.animate-orbit-reverse {
  animation: orbit 30s linear infinite reverse;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 0.8s linear infinite;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* === CONSOLIDATED SITE STYLES === */

/* --- home.css --- */

.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0b0e1f;
  padding-top: 68vw;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 48%;
  pointer-events: none;
  user-select: none;
}

.hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 11, 26, 0.22) 0%, rgba(8, 11, 26, 0.08) 32%, rgba(8, 11, 26, 0.55) 58%, rgba(8, 11, 26, 0.96) 74%, #0b0e1f 82%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 40px;
}

.hero-copy {
  max-width: 610px;
}

.hero-portrait-wrap {
  flex: 1 1 280px;
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow .rule {
  height: 1px;
  width: 32px;
  background: var(--color-gold);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 62px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--color-gold);
  font-style: italic;
}

.hero-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(230, 204, 145, 0.9);
  margin-bottom: 32px;
}

.hero-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-60);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-item span {
  font-size: 13px;
  color: rgba(250, 247, 240, 0.65);
}

.orbit-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 93, 0.1);
}

.orbit-ring.r1 {
  width: 420px;
  height: 420px;
}

.orbit-ring.r2 {
  width: 360px;
  height: 360px;
  border-color: rgba(201, 163, 93, 0.15);
}

.orbit-ring.r3 {
  width: 300px;
  height: 300px;
  border-color: rgba(201, 163, 93, 0.08);
}

.orbit-dot-track {
  position: absolute;
  border-radius: 50%;
}

.orbit-dot-track.outer {
  width: 420px;
  height: 420px;
  animation: orbit 18s linear infinite;
}

.orbit-dot-track.inner {
  width: 300px;
  height: 300px;
  animation: orbit 12s linear infinite reverse;
}

.orbit-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.orbit-dot.gold {
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  box-shadow: 0 0 8px rgba(201, 163, 93, 0.8);
}

.orbit-dot.pale {
  width: 8px;
  height: 8px;
  background: var(--color-gold-light);
  box-shadow: 0 0 6px rgba(230, 204, 145, 0.7);
}

.portrait {
  position: relative;
  width: 280px;
}

.portrait-glow {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(24px);
  opacity: 0.2;
  background: radial-gradient(ellipse, #c9a35d 0%, transparent 70%);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 48% 48% / 60% 60% 40% 40%;
  border: 2px solid rgba(201, 163, 93, 0.35);
  box-shadow: 0 0 60px rgba(201, 163, 93, 0.15), inset 0 0 40px rgba(16, 20, 42, 0.2);
  aspect-ratio: 0.78;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}

.portrait-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16, 20, 42, 0.6) 100%);
}

.float-card {
  position: absolute;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--gold-20);
  backdrop-filter: blur(12px);
}

.float-id {
  left: -32px;
  bottom: 48px;
  background: rgba(23, 29, 56, 0.92);
}

.float-consult {
  right: -24px;
  top: 64px;
  background: rgba(201, 163, 93, 0.12);
  border-color: rgba(201, 163, 93, 0.25);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #10142a);
}

.trust-strip {
  padding: 40px 0;
  background: var(--color-navy-mid);
  border-top: 1px solid rgba(201, 163, 93, 0.15);
  border-bottom: 1px solid rgba(201, 163, 93, 0.15);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
}

.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-12);
  color: var(--color-gold);
}

.trust-item p {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 12px;
  color: rgba(250, 247, 240, 0.45);
}

.section-cream {
  padding: 80px 0;
  background: var(--color-cream);
}

.section-warm {
  padding: 80px 0;
  background: var(--color-warm-white);
}

.section-dark {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #0d1124 0%, #10142a 40%, #13193a 100%);
}

.guidance-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gold-18);
  background: var(--color-warm-white);
  box-shadow: 0 2px 16px rgba(16, 20, 42, 0.06);
  overflow: hidden;
}

.guidance-card .pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: radial-gradient(circle at 80% 20%, #c9a35d 1px, transparent 1px);
  background-size: 24px 24px;
}

.about-photo {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-frame-offset {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 90%;
  height: 90%;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201, 163, 93, 0.25);
  pointer-events: none;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(16, 20, 42, 0.2);
  border: 1px solid var(--gold-20);
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.9);
}

.about-star {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-mid);
  border: 1.5px solid rgba(201, 163, 93, 0.4);
}

.expertise-row {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 163, 93, 0.15);
  background: rgba(201, 163, 93, 0.03);
  transition: border-color 0.3s ease;
}

.expertise-row:hover {
  border-color: rgba(201, 163, 93, 0.4);
}

.services-bento {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-featured {
  flex: 1 1 280px;
  min-height: 420px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(201, 163, 93, 0.18) 0%, rgba(201, 163, 93, 0.07) 55%, rgba(255, 255, 255, 0.03) 100%);
  border: 1.5px solid rgba(201, 163, 93, 0.38);
  box-shadow: 0 12px 60px rgba(201, 163, 93, 0.12), inset 0 1px 0 rgba(201, 163, 93, 0.15);
}

.service-grid {
  flex: 2 1 480px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-mini {
  flex: 1 1 calc(50% - 8px);
  min-width: 220px;
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.038);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(16, 20, 42, 0.25);
  border-color: rgba(201, 163, 93, 0.4);
  background: rgba(201, 163, 93, 0.06);
}

.service-wide {
  flex: 1 1 100%;
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(255, 255, 255, 0.038);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.service-wide:hover {
  border-color: rgba(201, 163, 93, 0.35);
  background: rgba(201, 163, 93, 0.05);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}

.process-step {
  flex: 1 1 220px;
  position: relative;
  text-align: center;
}

.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid rgba(201, 163, 93, 0.25);
  background: var(--color-warm-white);
  color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(16, 20, 42, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-icon {
  border-color: var(--color-gold);
  box-shadow: 0 0 24px rgba(201, 163, 93, 0.2);
}

.birth-form-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #0b0e1f 0%, #10142a 50%, #12163a 100%);
}

.form-panel {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gold-20);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.why-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gold-18);
  background: var(--color-cream);
  box-shadow: 0 2px 20px rgba(16, 20, 42, 0.05);
  text-align: center;
}

.tools-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(180deg, #0f1328 0%, #171d38 100%);
}

.tool-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(201, 163, 93, 0.15);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.tool-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.tool-badge.free {
  background: var(--gold-20);
  color: var(--color-gold-light);
}

.tool-badge.soon {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(250, 247, 240, 0.4);
}

.vastu-banner {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 80px rgba(16, 20, 42, 0.12);
  min-height: 460px;
}

.testimonial-slider {
  max-width: 72rem;
  margin: 0 auto;
}

.testimonial-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.testimonial-card {
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: var(--color-warm-white);
  border: 1px solid var(--gold-20);
  box-shadow: 0 8px 48px rgba(16, 20, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card[hidden] {
  display: none !important;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: #c9a35d;
  opacity: 0.25;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: #3d4152;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.article-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-18);
  background: var(--color-cream);
  box-shadow: 0 2px 20px rgba(16, 20, 42, 0.06);
}

.article-thumb {
  position: relative;
  overflow: hidden;
  height: 192px;
  background: var(--color-navy);
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.faq-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.faq-intro {
  flex: 0 1 380px;
}

.faq-list {
  flex: 1 1 360px;
}

.final-cta {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #080b1a 0%, #10142a 50%, #0e1228 100%);
}

@media (min-width: 640px) {
  .portrait {
    width: 320px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .testimonial-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
    align-items: center;
    padding-top: 0;
  }

  .hero-banner {
    object-position: 78% center;
  }

  .hero-veil {
    background:
      linear-gradient(90deg, rgba(8, 11, 26, 0.78) 0%, rgba(8, 11, 26, 0.58) 26%, rgba(8, 11, 26, 0.22) 46%, rgba(8, 11, 26, 0.05) 62%, transparent 78%),
      linear-gradient(180deg, rgba(8, 11, 26, 0.28) 0%, transparent 18%, transparent 78%, rgba(16, 20, 42, 0.55) 100%);
  }

  .hero-inner {
    padding-top: 128px;
    padding-bottom: 96px;
  }

  .portrait {
    width: 360px;
  }

  .trust-item {
    flex: 1 1 25%;
    padding: 16px 40px;
    border-left: 1px solid rgba(201, 163, 93, 0.15);
  }

  .trust-item:first-child {
    padding-left: 0;
    border-left: none;
  }

  .trust-item:last-child {
    padding-right: 0;
  }

  .section-cream,
  .section-warm,
  .section-dark,
  .birth-form-section,
  .tools-section {
    padding: 112px 0;
  }

  .service-wide {
    padding: 32px;
  }

  .testimonial-card {
    padding: 36px;
  }

  .testimonial-quote-mark {
    font-size: 72px;
  }

  .testimonial-quote {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .final-cta {
    padding: 144px 0;
  }
}

@media (max-width: 639px) {
  .service-mini {
    flex: 1 1 100%;
  }

  .float-id {
    left: 0;
  }

  .float-consult {
    right: 0;
  }

  .orbit-ring.r1,
  .orbit-dot-track.outer {
    width: 300px;
    height: 300px;
  }
}

.hero-trust-item .lucide {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

.trust-icon .lucide,
.about-star .lucide {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
}

.step-icon .lucide {
  width: 28px;
  height: 28px;
}


/* --- services.css --- */

.service-hero-media {
  display: none;
  flex: 1 1 360px;
  justify-content: flex-end;
}

.service-hero-img {
  position: relative;
  width: 420px;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-20);
}

.service-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
}

.question-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-18);
  background: var(--color-warm-white);
  box-shadow: 0 2px 12px rgba(16, 20, 42, 0.05);
}

.review-card {
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--gold-18);
  background: var(--color-cream);
  box-shadow: 0 2px 12px rgba(16, 20, 42, 0.05);
}

.inline-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 163, 93, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.category-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.category-head .rule {
  flex: 1;
  height: 1px;
  background: var(--gold-20);
}

.unsure-band {
  padding: 56px 0;
  background: var(--color-navy-mid);
  text-align: center;
}

.vastu-types article {
  flex: 1 1 240px;
}

@media (min-width: 1024px) {
  .service-hero-media {
    display: flex;
  }
}


/* --- service.css --- */

/* Shared service-page layout helpers */
.service-hero-copy {
  flex: 1 1 320px;
}


/* --- about.css --- */

.about-hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.about-hero-copy {
  flex: 1 1 320px;
}

.about-hero-portrait {
  flex: 1 1 280px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.about-hero-portrait .portrait {
  width: 310px;
}

.philosophy-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: flex-start;
}

.philosophy-layout > * {
  flex: 1 1 300px;
}

.quote-box {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 2px solid var(--color-gold);
  background: linear-gradient(to right, rgba(201, 163, 93, 0.08), transparent);
}

.quote-box p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-gold);
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.expertise-grid article {
  flex: 1 1 calc(50% - 8px);
  min-width: 140px;
}

.life-areas-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.life-areas-layout > * {
  flex: 1 1 300px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.chip {
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(201, 163, 93, 0.25);
  background: var(--color-warm-white);
  color: var(--color-text-dark);
}

.when-box {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gold-20);
  background: var(--color-warm-white);
  box-shadow: 0 4px 24px rgba(16, 20, 42, 0.07);
}

.principle-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gold-18);
  background: rgba(201, 163, 93, 0.05);
  text-align: center;
  flex: 1 1 200px;
}

@media (min-width: 1024px) {
  .expertise-grid article:nth-child(1),
  .expertise-grid article:nth-child(6) {
    flex: 1 1 calc(50% - 8px);
  }

  .expertise-grid article {
    flex: 1 1 calc(25% - 12px);
  }
}


/* --- articles.css --- */

.article-featured {
  display: flex;
  flex-wrap: wrap;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--gold-20);
  box-shadow: 0 8px 32px rgba(16, 20, 42, 0.09);
}

.article-featured-media {
  flex: 1 1 320px;
  position: relative;
  min-height: 300px;
}

.article-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-featured-copy {
  flex: 1 1 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-warm-white);
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-chip {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  background: var(--gold-10);
  color: var(--color-body);
  border: 1px solid var(--gold-20);
}

.filter-chip.is-active {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
  font-weight: 600;
}

.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.article-grid article {
  flex: 1 1 280px;
}

.article-body-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.article-main {
  flex: 1 1 480px;
}

.article-toc {
  display: none;
  flex: 0 0 220px;
  position: sticky;
  top: 96px;
}

.article-hero-image {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 340px;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.faq-cat {
  flex-shrink: 0;
  text-align: left;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-body);
  border: 1px solid transparent;
}

.faq-cat.is-active {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
  font-weight: 600;
}

.faq-page-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.testimonial-masonry {
  columns: 1;
  column-gap: 24px;
}

.testimonial-tile {
  break-inside: avoid;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-18);
  background: var(--color-warm-white);
  box-shadow: 0 2px 14px rgba(16, 20, 42, 0.05);
  padding: 20px;
  margin-bottom: 24px;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-legal);
}

.legal-body h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .testimonial-masonry {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .article-toc {
    display: block;
  }

  .article-hero-image {
    height: 460px;
  }

  .faq-cats {
    flex-direction: column;
    overflow: visible;
    flex: 0 0 220px;
  }

  .testimonial-masonry {
    columns: 3;
  }
}


/* --- booking.css --- */

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}

.contact-method {
  flex: 1 1 240px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-20);
  background: var(--color-warm-white);
  box-shadow: 0 4px 20px rgba(16, 20, 42, 0.06);
  padding: 24px;
  text-align: center;
}

.enquiry-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.enquiry-layout > * {
  flex: 1 1 320px;
}

.success-state {
  text-align: center;
  padding: 32px 0;
}

.booking-progress {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.progress-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(250, 247, 240, 0.35);
  transition: background 0.3s ease, color 0.3s ease;
}

.progress-step.is-done .progress-num,
.progress-step.is-active .progress-num {
  background: var(--color-gold);
  color: var(--color-navy);
}

.progress-label {
  font-size: 10px;
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
  color: rgba(250, 247, 240, 0.3);
}

.progress-step.is-done .progress-label,
.progress-step.is-active .progress-label {
  color: var(--color-gold);
}

.progress-line {
  flex: 1;
  height: 1px;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-line.is-done {
  background: var(--color-gold);
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: block;
}

.service-choice {
  text-align: left;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold-20);
  background: var(--color-warm-white);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.service-choice.is-selected {
  background: rgba(201, 163, 93, 0.08);
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(201, 163, 93, 0.15);
}

.calendar-box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-20);
  background: var(--color-warm-white);
  box-shadow: 0 2px 16px rgba(16, 20, 42, 0.06);
  padding: 20px;
  flex: 1 1 280px;
}

.calendar-grid {
  display: flex;
  flex-wrap: wrap;
}

.calendar-grid > * {
  flex: 0 0 14.285%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-day.is-selected {
  background: var(--color-gold);
  color: var(--color-navy);
}

.cal-day.is-past {
  color: var(--color-muted-light);
  cursor: default;
}

.cal-day.is-empty {
  color: transparent;
  cursor: default;
}

.slot-list {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slot-btn {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 163, 93, 0.25);
  background: var(--color-warm-white);
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  color: var(--color-gray);
}

.slot-btn.is-selected {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.pay-method {
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-20);
  background: var(--color-warm-white);
  text-align: center;
}

.pay-method.is-active {
  background: rgba(201, 163, 93, 0.08);
  border-color: var(--color-gold);
  box-shadow: 0 2px 12px rgba(201, 163, 93, 0.15);
}

.pay-panel {
  display: none;
}

.pay-panel.is-active {
  display: block;
}

.checkout-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.checkout-form {
  flex: 1 1 360px;
}

.order-summary {
  flex: 0 1 340px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 163, 93, 0.22);
  background: var(--color-warm-white);
  box-shadow: 0 4px 24px rgba(16, 20, 42, 0.08);
  padding: 20px;
  position: sticky;
  top: 32px;
}

.confirm-wrap {
  position: relative;
  min-height: 100vh;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0e1f 0%, #10142a 100%);
}


/* --- contact.css --- */

/* Contact-specific spacing lives in booking.css contact-methods */
.contact-hero .lead {
  max-width: 36rem;
}


/* --- faq.css --- */

.faq-panel {
  display: none;
}

.faq-panel.is-active {
  display: block;
}

.faq-mini-item {
  border-bottom: 1px solid rgba(201, 163, 93, 0.12);
}

.faq-mini-item:last-child {
  border-bottom: none;
}


/* --- legal.css --- */

.legal-hero .lead {
  font-size: 16px;
  color: var(--cream-55);
}


/* --- payment.css --- */

.pay-page {
  min-height: 100vh;
  padding: 128px 0 40px;
  background: var(--color-cream);
}

.checkout-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gold-20);
}


/* --- testimonials.css --- */

.stat-row {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.stat-row p {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-row span {
  font-size: 12px;
  color: rgba(250, 247, 240, 0.45);
}


/* --- tools.css --- */

/* Tools page uses shared service/tool card styles from home.css */
.tools-hero p {
  max-width: 42rem;
}


/* --- birth-details.css --- */

.birth-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.birth-copy {
  flex: 1 1 360px;
}

.birth-form-card {
  flex: 0 1 480px;
  width: 100%;
}

/* --- reusable layout, type, and component helpers --- */
/* -------------------------------------------------------------------------- */
/* Shared component defaults (absorb former inline styles)                    */
/* -------------------------------------------------------------------------- */

.gold-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.premium-label {
  display: block;
  margin-bottom: 16px;
}

.hero-eyebrow .premium-label {
  display: inline;
  margin-bottom: 0;
}

.lead {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 42rem;
}

.section-label-center {
  margin-bottom: 48px;
}

.section-label-center .gold-divider {
  margin: 20px auto;
}

.section-label-center p,
.section-intro {
  font-size: 17px;
  line-height: 1.7;
}

.zodiac-watermark {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
}

.zodiac-watermark-lg {
  width: 680px;
}

.zodiac-watermark-xl {
  width: 700px;
}

.section-cta .container,
.container-cta {
  max-width: 42rem;
  position: relative;
  z-index: 1;
}

.section-cta .gold-divider,
.gold-divider-center {
  max-width: 20rem;
  margin: 24px auto;
}

.section-dark h2,
.section-dark .heading-cream,
.unsure-band h2,
.final-cta h2 {
  color: var(--color-cream);
}

.section-dark .hero-rule {
  margin: 20px 0 24px;
}

.question-card .icon-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.question-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-dark);
}

.review-card .icon-box,
.card-feature .icon-box {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.review-card h3,
.card-feature h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.inline-step .icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
}

.inline-step span {
  color: var(--color-cream);
  font-size: 14px;
  font-weight: 500;
}

.inline-step .check-dot + span,
.check-copy {
  color: var(--cream-70);
  font-size: 13.5px;
}

.inline-step.is-compact span,
.check-copy-sm {
  color: rgba(250, 247, 240, 0.65);
  font-size: 12.5px;
}

a.card-light {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

a.card-light h3 {
  margin-bottom: 8px;
}

a.card-light .text-small {
  flex: 1;
  margin-bottom: 16px;
}

.guidance-card .icon-box {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.guidance-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.guidance-card .text-small {
  margin-bottom: 16px;
}

.article-card .article-body,
.card-body {
  padding: 24px;
}

.article-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.article-card .text-small {
  margin-bottom: 16px;
}

.article-meta,
.row-between {
  display: flex;
  justify-content: space-between;
}

.thumb-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(16, 20, 42, 0.85);
  color: var(--color-gold-light);
}

.testimonial-meta .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 163, 93, 0.3);
}

.testimonial-meta p:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark-text);
}

.testimonial-meta p:last-child {
  font-size: 12px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 93, 0.25);
  color: var(--color-body);
}

.slider-dot {
  height: 8px;
  width: 8px;
  border-radius: 999px;
  background: rgba(201, 163, 93, 0.3);
}

.slider-dot.is-active {
  width: 24px;
  background: var(--color-gold);
}

.cal-head {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 600;
}

.form-input,
textarea.form-input {
  resize: none;
}

.input-dark {
  color-scheme: dark;
}

/* -------------------------------------------------------------------------- */
/* Layout helpers                                                             */
/* -------------------------------------------------------------------------- */

.section-xs {
  padding: 48px 0;
}

.section-sm {
  padding: 56px 0;
}

.section-md {
  padding: 64px 0;
}

.section-compact {
  min-height: 60vh;
  padding: 40px 0;
}

.section-dark-fade {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.flex-1 {
  flex: 1;
}

.relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.list-none {
  list-style: none;
}

.object-cover {
  object-fit: cover;
}

.italic {
  font-style: italic;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* Spacing utilities                                                          */
/* -------------------------------------------------------------------------- */

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 4px; }
.mb-6 { margin-bottom: 6px; }
.mb-8 { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }

.mt-6 { margin-top: 6px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }

.my-20 { margin-top: 20px; margin-bottom: 20px; }
.my-24 { margin-top: 24px; margin-bottom: 24px; }
.my-32 { margin-top: 32px; margin-bottom: 32px; }

.pt-16 { padding-top: 16px; }
.pt-112 { padding-top: 112px; }
.pb-0 { padding-bottom: 0; }
.pb-16 { padding-bottom: 16px; }
.pb-32 { padding-bottom: 32px; }
.pb-40 { padding-bottom: 40px; }

.p-12 { padding: 12px; }
.p-14 { padding: 14px; }
.p-16 { padding: 16px; }
.p-20 { padding: 20px; }
.p-24 { padding: 24px; }
.p-28 { padding: 28px; }
.p-32 { padding: 32px; }

.px-12 { padding-left: 12px; padding-right: 12px; }
.px-16 { padding-left: 16px; padding-right: 16px; }
.px-20 { padding-left: 20px; padding-right: 20px; }
.px-24 { padding-left: 24px; padding-right: 24px; }
.py-4 { padding-top: 4px; padding-bottom: 4px; }
.py-6 { padding-top: 6px; padding-bottom: 6px; }
.py-8 { padding-top: 8px; padding-bottom: 8px; }
.py-10 { padding-top: 10px; padding-bottom: 10px; }
.py-12 { padding-top: 12px; padding-bottom: 12px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }

/* -------------------------------------------------------------------------- */
/* Typography & color utilities                                               */
/* -------------------------------------------------------------------------- */

.text-cream { color: var(--color-cream); }
.text-gold { color: var(--color-gold); }
.text-gold-light { color: var(--color-gold-light); }
.text-muted { color: var(--color-muted); }
.text-body { color: var(--color-body); }
.text-dark { color: var(--color-dark-text); }
.text-body-dark { color: var(--color-text-dark); }
.text-cream-35 { color: rgba(250, 247, 240, 0.35); }
.text-cream-40 { color: rgba(250, 247, 240, 0.4); }
.text-cream-45 { color: rgba(250, 247, 240, 0.45); }
.text-cream-48 { color: rgba(250, 247, 240, 0.48); }
.text-cream-50 { color: var(--cream-50); }
.text-cream-55 { color: var(--cream-55); }
.text-cream-60 { color: var(--cream-60); }
.text-cream-65 { color: rgba(250, 247, 240, 0.65); }
.text-cream-70 { color: var(--cream-70); }
.text-cream-75 { color: rgba(250, 247, 240, 0.75); }
.text-gold-30 { color: rgba(201, 163, 93, 0.3); }
.text-gold-55 { color: rgba(201, 163, 93, 0.55); }
.text-gold-70 { color: rgba(201, 163, 93, 0.7); }
.text-soft { color: rgba(93, 97, 112, 0.6); }

.fs-10 { font-size: 10px; }
.fs-11 { font-size: 11px; }
.fs-11-5 { font-size: 11.5px; }
.fs-12 { font-size: 12px; }
.fs-12-5 { font-size: 12.5px; }
.fs-13 { font-size: 13px; }
.fs-13-5 { font-size: 13.5px; }
.fs-14 { font-size: 14px; }
.fs-14-5 { font-size: 14.5px; }
.fs-15 { font-size: 15px; }
.fs-16 { font-size: 16px; }
.fs-17 { font-size: 17px; }
.fs-18 { font-size: 18px; }
.fs-20 { font-size: 20px; }
.fs-24 { font-size: 24px; }
.fs-28 { font-size: 28px; }
.fs-hero { font-size: clamp(2.25rem, 5vw, 3.75rem); }
.fs-page { font-size: clamp(1.875rem, 3vw, 2.25rem); }

.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.lh-body { line-height: 1.7; }
.lh-snug { line-height: 1.6; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.16em; }
.font-display { font-family: var(--font-display); }
.max-w-prose { max-width: 42rem; }
.max-w-copy { max-width: 36rem; }
.max-w-wide { max-width: 48rem; }
.max-w-form { max-width: 900px; }

.opacity-06 { opacity: 0.06; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }

/* -------------------------------------------------------------------------- */
/* Icon size modifiers                                                        */
/* -------------------------------------------------------------------------- */

.icon-xs {
  width: 24px;
  height: 24px;
}

.icon-sm {
  width: 28px;
  height: 28px;
}

.icon-sm-round {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.icon-md {
  width: 32px;
  height: 32px;
}

.icon-lg {
  width: 36px;
  height: 36px;
}

.icon-xl {
  width: 40px;
  height: 40px;
}

.icon-2xl {
  width: 44px;
  height: 44px;
}

.icon-3xl {
  width: 48px;
  height: 48px;
}

.icon-4xl {
  width: 56px;
  height: 56px;
}

.icon-5xl {
  width: 64px;
  height: 64px;
}

.icon-6xl {
  width: 80px;
  height: 80px;
}

.icon-round {
  border-radius: 50%;
}

.icon-center {
  margin: 0 auto 16px;
}

.icon-center-lg {
  margin: 0 auto 20px;
}

.icon-border {
  border: 1px solid rgba(201, 163, 93, 0.3);
}

.icon-border-lg {
  border: 1.5px solid rgba(201, 163, 93, 0.4);
}

.icon-border-xl {
  border: 2px solid rgba(201, 163, 93, 0.4);
}

.icon-quote {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
}

.icon-gold-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.icon-check-sm {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  background: var(--color-gold);
  color: var(--color-navy);
}

.icon-check-md {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 11px;
  font-weight: 700;
}

.icon-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.icon-step-ring {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 93, 0.4);
}

.icon-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--color-gold);
}

.icon-tile {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid var(--gold-20);
}

.count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------------------------- */
/* Reusable UI patterns                                                       */
/* -------------------------------------------------------------------------- */

.stack-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.stack-row-sm {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.stack-row-md {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.row-between-sm {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.row-between-md {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.row-between-lg {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.row-split {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.row-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  align-items: flex-end;
}

.row-actions {
  display: flex;
  margin-top: 32px;
  gap: 12px;
}

.row-end {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}

.media-row {
  padding: 12px;
  display: flex;
  gap: 12px;
}

.media-row-md {
  padding: 16px;
  display: flex;
  gap: 12px;
}

.card-stack {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.card-stack-lg {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.card-pad-center {
  padding: 24px;
  text-align: center;
}

.card-grow {
  padding: 24px;
  flex: 1;
}

.thumb-frame {
  height: 176px;
  overflow: hidden;
}

.thumb-frame img,
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--gold-20);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.panel-soft {
  border-radius: 16px;
  border: 1px solid rgba(201, 163, 93, 0.18);
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  margin-bottom: 24px;
}

.panel-navy {
  border-radius: 16px;
  padding: 24px;
  margin: 32px 0;
  background: linear-gradient(135deg, #10142a 0%, #1a2045 100%);
  border: 1px solid rgba(201, 163, 93, 0.25);
}

.panel-navy-late {
  margin-top: 32px;
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #10142a 0%, #1a2045 100%);
  border: 1px solid rgba(201, 163, 93, 0.25);
}

.card-dark-soft {
  padding: 24px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 163, 93, 0.25);
}

.divider-gold-sm {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 16px;
}

.hero-rule-tight {
  margin: 20px 0;
}

.hero-rule-spaced {
  margin: 20px 0 24px;
}

.process-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.2;
  font-family: var(--font-display);
}

.process-num-lg {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.25;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 12px;
}

.process-num-ghost {
  font-size: 60px;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.06;
  font-family: var(--font-display);
  line-height: 1;
}

.quote-mark-inline {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.25;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 12px;
}

.tool-title {
  color: var(--color-cream);
  font-size: 20px;
  margin-bottom: 10px;
  padding-right: 96px;
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.35);
  margin-bottom: 4px;
}

.badge-pill {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201, 163, 93, 0.22);
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 163, 93, 0.3);
}

.badge-success {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(52, 211, 153, 0.12);
  color: var(--color-success);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.badge-featured {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(201, 163, 93, 0.9);
  color: var(--color-navy);
}

.chip-inline {
  margin-top: 8px;
  display: inline-block;
}

.footer-strip {
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  border-top: 1px solid rgba(201, 163, 93, 0.1);
}

.summary-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 163, 93, 0.15);
}

.summary-foot {
  border-top: 1px solid rgba(201, 163, 93, 0.15);
  padding-top: 16px;
  margin-top: 8px;
}

.night-bar {
  padding: 12px 20px;
  background: linear-gradient(90deg, var(--color-navy), var(--color-navy-mid));
}

.vastu-banner-photo {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1758448755952-42b404bc6f39?w=1400&h=800&fit=crop&auto=format") center / cover;
  filter: brightness(0.5) saturate(0.7);
}

.vastu-banner-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 20, 42, 0.88) 0%, rgba(16, 20, 42, 0.7) 60%, rgba(16, 20, 42, 0.4) 100%);
}

.vastu-banner-inner {
  position: relative;
  z-index: 1;
  padding: 64px;
  min-height: 460px;
}

.service-hero-img-sm {
  height: 320px;
  width: 100%;
  max-width: 520px;
}

.display-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-cream);
}

.display-title-md {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.legal-note {
  text-align: center;
  font-size: 11.5px;
  color: rgba(93, 97, 112, 0.6);
  margin-top: 24px;
}

.hint-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--color-muted);
}

.radio-row {
  display: flex;
  gap: 12px;
  margin: 16px 0;
  font-size: 12.5px;
}

.btn-compact {
  padding: 12px 20px;
  font-size: 13px;
}

.btn-compact-lg {
  padding: 12px 24px;
  font-size: 13px;
}

.btn-pay {
  padding: 16px;
  font-size: 13px;
}

.btn-follow {
  margin-top: 16px;
  padding: 16px;
}

.btn-follow-sm {
  margin-top: 16px;
  padding: 14px;
}

.btn-follow-xs {
  margin-top: 16px;
  padding: 10px;
  font-size: 12.5px;
}

.btn-submit-lg {
  margin-top: 28px;
  padding: 16px;
  font-size: 15px;
}

@media (min-width: 1024px) {
  .section-xs {
    padding: 48px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .section-md {
    padding: 64px 0;
  }
}

