:root {
  --bg-dark: #061410;
  --bg-dark-rgb: 6, 20, 16;
  --bg-light: #f4faf6;
  --bg-light2: #f8fcf9;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-light: #ffffff;
  --gold: #5cb85c;
  --gold-light: #e8f55a;
  --gold-dark: #2d6a4f;
  --maroon: #1a4d32;
  --maroon-light: #3d8b5e;
  --cream: #e8f2ea;
  --text-dark: #0a1f14;
  --text-body: #1e3d2e;
  --text-muted: #8faf9a;
  --text-muted-light: #5a7a66;
  --border: rgba(92, 184, 92, 0.28);
  --border-light: rgba(92, 184, 92, 0.38);
  --gradient-gold: linear-gradient(135deg, #e8f55a, #5cb85c, #2d6a4f);
  --gradient-dark: linear-gradient(
    180deg,
    #061410 0%,
    #0a1f14 50%,
    #061410 100%
  );
  --shadow-gold: 0 0 30px rgba(92, 184, 92, 0.22);
  --accent-rgb: 92, 184, 92;
  --lemon-rgb: 232, 245, 90;
  --deep-green-rgb: 26, 77, 50;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background: var(--bg-dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

::selection {
  background: rgba(var(--accent-rgb), 0.35);
  color: var(--cream);
}
.section-light ::selection {
  color: var(--text-dark);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: none;
}

.text-muted {
  color: var(--text-muted);
}
.text-muted-light {
  color: var(--text-muted-light);
}
.section-intro {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}
.section-light .section-intro {
  color: var(--text-muted-light);
}
.page-header .section-tag.center {
  display: flex;
  justify-content: center;
}
.appt-info .section-intro {
  margin-bottom: 24px;
  max-width: none;
  color: var(--text-muted);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  width: 100%;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(6, 20, 16, 0.92);
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.3s,
    background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-dark);
  color: var(--cream);
}

.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.footer-col.footer-contact > ul li,
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-contact li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--gradient-gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}
.form-note a {
  color: var(--gold);
  text-decoration: none;
}
.form-note a:hover {
  text-decoration: underline;
}
.form-status {
  font-size: 0.85rem;
  margin-top: 12px;
  text-align: center;
  min-height: 1.2em;
}
.form-status.success {
  color: #5cb88a;
}
.form-status.error {
  color: #e88a8a;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  #particles-canvas {
    display: none;
  }
  .hero-bg {
    transition: none;
  }
}

/* ── Light section base ── */
.section-light {
  background: var(--bg-light);
  color: var(--text-body);
}
.section-light .section-tag {
  color: var(--gold-dark);
}
.section-light .section-title {
  color: var(--text-dark);
}
.section-light .section-divider::before,
.section-light .section-divider::after {
  background: var(--border-light);
}
.section-light p {
  color: var(--text-muted-light);
}
.section-light .gold-text {
  background: linear-gradient(135deg, #2d6a4f, #5cb85c, #c5d94a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Particles Canvas ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ── Utility ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.section-divider span {
  color: var(--gold);
  font-size: 1.1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(var(--accent-rgb), 0.12);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 11px 24px;
  font-size: 0.75rem;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(6, 20, 16, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled {
  padding: 0 24px;
  box-shadow: 0 4px 30px rgba(var(--bg-dark-rgb), 0.5);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-main {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
}
.nav-logo-sub {
  font-family: "Lato", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  padding: 10px 24px;
  font-size: 0.78rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  background: none;
  border: none;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  border-radius: 2px;
}
.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);
}
body.nav-open {
  overflow: hidden;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.png") center/cover no-repeat;
  filter: brightness(0.35) saturate(1.2);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--deep-green-rgb), 0.45) 0%,
    rgba(6, 20, 16, 0.75) 70%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
  animation: fadeInUp 1s ease both;
}
.hero-guru {
  width: 88px;
  margin: 0 auto 20px;
  padding: 3px;
  background: var(--gradient-gold);
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(var(--bg-dark-rgb), 0.35);
}
.hero-guru img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  border: 2px solid rgba(6, 20, 16, 0.85);
  display: block;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid var(--border-light);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge span {
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-badge::before,
.hero-badge::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.6rem;
}
.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-title .line1 {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line2 {
  display: block;
  color: var(--cream);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  margin-top: 8px;
}
.hero-subtitle {
  font-family: "Crimson Text", serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  font-style: italic;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

/* ── Page Header ── */
.page-header {
  padding: 160px 0 80px;
  background: var(--gradient-dark);
  text-align: center;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border-light);
}
.page-header .section-title {
  margin-bottom: 12px;
}
.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ── Stats Bar ── */
.stats-bar {
  position: relative;
  z-index: 1;
  background: #0a1f14;
  border-top: 1px solid rgba(var(--accent-rgb), 0.4);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.4);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(var(--accent-rgb), 0.3);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: #a8d4b0;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── About ── */
.about {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 4px;
  display: block;
  filter: saturate(0.9);
}
.about-img-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  pointer-events: none;
}
.about-img-frame::before {
  content: "✦";
  position: absolute;
  top: -8px;
  left: 24px;
  background: var(--bg-light);
  padding: 0 8px;
  color: var(--gold);
  font-size: 0.8rem;
}
.about-gold-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-gold);
  padding: 16px 24px;
  border-radius: 3px;
  text-align: center;
}
.about-gold-badge strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 900;
}
.about-gold-badge span {
  font-size: 0.72rem;
  color: rgba(10, 31, 20, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-content p {
  color: var(--text-muted-light);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.about-teaser {
  padding: 80px 0;
}
.about-teaser .about-content p {
  margin-bottom: 24px;
}
.about-teaser .btn-outline {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}
.about-teaser .btn-outline:hover {
  color: var(--text-dark);
}
.about-content p strong {
  color: var(--text-dark);
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}
.highlight-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(var(--accent-rgb), 0.08);
}
.highlight-icon {
  font-size: 1.4rem;
}
.highlight-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
}

/* ── Services ── */
.services {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(var(--deep-green-rgb), 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.services-preview {
  padding: 80px 0;
}
.services-grid-preview {
  grid-template-columns: repeat(3, 1fr);
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.14);
}
.service-card:hover::before {
  opacity: 1;
}
.service-num {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.service-title {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Consultation ── */
.consultation {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-light2);
}
.consultation-inner {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 60px;
  box-shadow: 0 8px 40px rgba(var(--accent-rgb), 0.1);
}
.consultation-header {
  text-align: center;
  margin-bottom: 48px;
}
.consultation-header .section-tag {
  color: var(--gold-dark);
}
.consultation-header .section-title {
  color: var(--text-dark);
}
.consult-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.consult-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-light);
  border-radius: 4px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}
.consult-check {
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.consult-item-text strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.consult-item-text span {
  font-size: 0.83rem;
  color: var(--text-muted-light);
}

/* ── Numerology Info ── */
.numinfo {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.numinfo.section-light {
  background: var(--bg-light);
}
.numinfo .section-tag {
  color: var(--gold-dark);
}
.numinfo .section-title {
  color: var(--text-dark);
}
.numinfo-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 48px;
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-shadow: 0 2px 12px rgba(var(--accent-rgb), 0.12);
}
.numinfo-tabs::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  padding: 12px 24px;
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  background: #fff;
  color: var(--text-muted-light);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-right: 1px solid var(--border-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn:last-child {
  border-right: none;
}
.tab-btn.active {
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-weight: 700;
}
.tab-btn:not(.active):hover {
  background: var(--bg-light2);
  color: var(--gold-dark);
}
.tab-content {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.tab-content.active {
  display: block;
}
.numinfo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.numinfo-text h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.numinfo-text p {
  color: var(--text-muted-light);
  font-size: 0.97rem;
  margin-bottom: 16px;
}
.numinfo-visual {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.1);
}
.num-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-dark);
}
.numinfo-visual h4 {
  font-family: "Cinzel", serif;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.numinfo-visual p {
  color: var(--text-muted-light);
  font-size: 0.88rem;
}

/* ── Appointment ── */
.appointment {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.appointment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--deep-green-rgb), 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.appt-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.appt-info h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  margin-bottom: 16px;
}
.appt-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
}
.appt-fee {
  background: var(--gradient-gold);
  border-radius: 4px;
  padding: 20px 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.fee-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.appt-fee .fee-amount {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.appt-fee .fee-inr {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(10, 31, 20, 0.85);
  line-height: 1.2;
}
.appt-fee .fee-label {
  font-size: 0.78rem;
  color: rgba(10, 31, 20, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
}
.appt-contact-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.appt-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.appt-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(var(--accent-rgb), 0.14);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.appt-contact-item a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
}
.appt-contact-item a:hover {
  color: var(--gold);
}
.appt-contact-item span {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.appt-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
}
.appt-form h3 {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 24px;
  text-align: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-family: "Cinzel", serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  color: var(--cream);
  font-family: "Lato", sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(var(--accent-rgb), 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(143, 175, 154, 0.5);
}
.form-group select option {
  background: #0a1f14;
  color: var(--cream);
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  font-size: 0.9rem;
  padding: 16px;
}

/* ── CTA ── */
.cta {
  padding: 56px 0 72px;
  position: relative;
  z-index: 1;
}
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at left center,
    rgba(var(--deep-green-rgb), 0.3) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.cta-content {
  position: relative;
  flex: 1;
  min-width: 0;
}
.cta-tag {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cta-tag::before {
  content: "✦ ";
  font-size: 0.55rem;
}
.cta-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}
.cta-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 480px;
}
.cta-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.cta-link {
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.cta-link:hover {
  color: var(--gold);
}
.cta-link i {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform 0.3s;
}
.cta-link:hover i {
  transform: translateX(3px);
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-light2);
}
.contact .section-tag {
  color: var(--gold-dark);
}
.contact .section-title {
  color: var(--text-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.1);
}
.contact-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--gold-dark);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--accent-rgb), 0.14);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-content label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-muted-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ci-content a,
.ci-content span {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.97rem;
  display: block;
}
.ci-content a:hover {
  color: var(--gold-dark);
}
.map-wrap {
  background: #f5f5f5;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  min-height: 380px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted-light);
  text-decoration: none;
  transition: all 0.3s;
  background: #fff;
}
.social-link:hover {
  background: var(--gradient-gold);
  border-color: var(--gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(var(--bg-dark-rgb), 0.92);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo-main {
  font-size: 1.4rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-tagline {
  color: var(--gold-dark);
  font-size: 0.78rem;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(6px);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid,
  .numinfo-layout,
  .appt-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid-preview {
    grid-template-columns: 1fr 1fr;
  }
  .about-gold-badge {
    right: 0;
    bottom: -12px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .appt-info h2,
  .appt-info-title {
    font-size: 1.65rem;
  }
  .page-header {
    padding: 140px 0 64px;
  }
  .about,
  .services,
  .numinfo,
  .consultation,
  .appointment,
  .contact {
    padding: 72px 0;
  }
  .about-teaser,
  .services-preview {
    padding: 64px 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .navbar {
    padding: 0 16px;
  }
  .nav-inner {
    height: 64px;
  }
  .nav-logo-main {
    font-size: 1.05rem;
  }
  .nav-logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 20, 16, 0.98);
    padding: 24px 16px 32px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a {
    display: block;
    padding: 16px 8px;
    font-size: 0.85rem;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-cta {
    display: inline-flex !important;
    padding: 8px 14px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    flex-shrink: 0;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 64px;
  }
  .hero-content {
    padding: 0 16px 80px;
  }
  .hero-guru {
    width: 72px;
    margin-bottom: 16px;
  }
  .hero-badge {
    padding: 8px 14px;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero-badge span {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    line-height: 1.4;
  }
  .hero-title .line2 {
    letter-spacing: 0.2em;
  }
  .hero-subtitle {
    margin-bottom: 28px;
    font-size: 1.05rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-scroll {
    bottom: 20px;
  }

  .page-header {
    padding: 120px 0 48px;
  }
  .page-header p {
    font-size: 0.95rem;
    padding: 0 8px;
  }
  .section-tag {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
  }
  .section-title {
    margin-bottom: 14px;
  }
  .section-divider {
    margin-bottom: 28px;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 20px 12px;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.72rem;
  }

  .about,
  .services,
  .numinfo,
  .consultation,
  .appointment,
  .contact {
    padding: 56px 0;
  }
  .about-teaser,
  .services-preview {
    padding: 48px 0;
  }
  .about-grid {
    gap: 32px;
  }
  .about-img-frame {
    inset: -8px;
  }
  .about-gold-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 16px auto 0;
    display: inline-flex;
    width: fit-content;
  }
  .about-image-wrap {
    text-align: center;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .about-teaser .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .services-header {
    margin-bottom: 36px;
  }
  .services-grid,
  .services-grid-preview {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-card {
    padding: 22px 18px;
  }
  .section-cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .numinfo-tabs {
    margin-bottom: 32px;
    border-radius: 4px;
  }
  .tab-btn {
    padding: 12px 16px;
    font-size: 0.72rem;
  }
  .numinfo-visual {
    padding: 24px 18px;
  }
  .num-circle {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }
  .numinfo-text h3 {
    font-size: 1.25rem;
  }

  .consultation-inner {
    padding: 28px 18px;
  }
  .consult-list {
    grid-template-columns: 1fr;
  }
  .consult-item {
    padding: 14px;
  }

  .appt-inner {
    gap: 32px;
  }
  .appt-info h2,
  .appt-info-title {
    font-size: 1.45rem;
  }
  .appt-fee {
    padding: 16px 20px;
  }
  .appt-fee .fee-amount {
    font-size: 1.6rem;
  }
  .appt-fee .fee-inr {
    font-size: 1rem;
  }
  .appt-form {
    padding: 24px 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group input,
  .form-group select {
    font-size: 16px;
  }

  .cta {
    padding: 40px 0 56px;
  }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px;
    gap: 20px;
  }
  .cta-actions {
    align-items: stretch;
    width: 100%;
  }
  .cta-actions .btn-sm {
    justify-content: center;
    width: 100%;
  }
  .cta-link {
    text-align: center;
  }

  .contact-card {
    padding: 28px 20px;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand p {
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .btn {
    padding: 13px 24px;
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.25);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .nav-cta {
    padding: 7px 10px;
    font-size: 0.6rem;
  }
  .hero-badge::before,
  .hero-badge::after {
    display: none;
  }
  .back-to-top {
    bottom: 16px;
    right: 16px;
  }
}
