:root {
  --bg: #1A141E;
  --bg-soft: #241B2A;
  --bg-card: #2B2131;
  --gold: #D4AF37;
  --gold-light: #F1D675;
  --text: #F8F2E8;
  --muted: #C8BCCE;
  --line: rgba(212, 175, 55, 0.22);
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: #1A141E;
  background: var(--gold);
  border-radius: var(--radius);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(26, 20, 30, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #1A141E;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.1);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-menu {
  position: fixed;
  inset: 76px 0 auto 0;
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(26, 20, 30, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-130%);
  transition: transform 220ms ease;
}

.nav-open .nav-menu {
  transform: translateY(0);
}

.nav-menu a {
  padding: 12px 14px;
  color: var(--muted);
  border-radius: var(--radius);
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
  background: rgba(212, 175, 55, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.hamburger span::before {
  transform: translateY(-6px);
}

.hamburger span::after {
  transform: translateY(4px);
}

.nav-open .hamburger span {
  transform: rotate(45deg);
}

.nav-open .hamburger span::before {
  opacity: 0;
}

.nav-open .hamburger span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  color: #1A141E;
  background: var(--gold);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.btn.secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.btn.secondary:hover {
  color: #1A141E;
  background: var(--gold);
}

.btn.small {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 0.9rem;
}

.call-btn {
  display: none;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section-head {
  display: grid;
  max-width: 720px;
  gap: 10px;
  margin-bottom: 30px;
}

.eyebrow {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.15rem, 7vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  background:
    linear-gradient(125deg, rgba(26, 20, 30, 0.94), rgba(26, 20, 30, 0.75)),
    url("../images/astrology-pattern.svg") center/cover no-repeat;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 38px;
}

.hero-content {
  display: grid;
  gap: 22px;
}

.hero-content p {
  max-width: 650px;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  display: grid;
  min-height: 320px;
  place-items: center;
}

.hero-visual img,
.about-image img {
  width: min(100%, 430px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 68px 0;
  background:
    linear-gradient(125deg, rgba(26, 20, 30, 0.95), rgba(26, 20, 30, 0.76)),
    url("../images/astrology-pattern.svg") center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  gap: 12px;
}

.page-hero p {
  max-width: 720px;
}

.trust-grid,
.services-grid,
.values-grid,
.testimonials-grid,
.content-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.trust-item,
.service-card,
.testimonial-card,
.value-card,
.info-card,
.faq-item,
.contact-form,
.map-placeholder,
.content-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.trust-item {
  display: grid;
  min-height: 120px;
  align-content: center;
  gap: 8px;
  padding: 18px;
}

.trust-item strong {
  color: var(--gold-light);
}

.service-card,
.testimonial-card,
.value-card,
.info-card,
.content-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card h2,
.service-card h3 {
  font-size: 1.2rem;
}

.service-card:hover,
.testimonial-card:hover,
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.055);
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #1A141E;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.about-preview,
.cta-band {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-copy,
.cta-copy {
  display: grid;
  gap: 16px;
}

.testimonial-card cite {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 800;
}

.cta-band {
  padding: 34px;
  background:
    linear-gradient(125deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.03)),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.content-panel h2 {
  font-size: 1.55rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-question::after {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #1A141E;
  background: var(--gold);
  border-radius: 50%;
  content: "+";
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  padding: 0 20px 20px;
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--text);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  padding: 12px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--gold-light);
  font-weight: 700;
}

.map-placeholder {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.map-placeholder div {
  display: grid;
  max-width: 520px;
  gap: 10px;
}

.site-footer {
  padding: 46px 0 24px;
  background: #130F16;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 26px;
}

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

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

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

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  font-size: 0.92rem;
}

.floating-whatsapp,
.scroll-top {
  position: fixed;
  right: 18px;
  z-index: 850;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.floating-whatsapp {
  bottom: 84px;
  color: #0B2414;
  background: #36D36A;
  font-weight: 900;
}

.scroll-top {
  bottom: 24px;
  color: #1A141E;
  background: var(--gold);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .services-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-preview,
  .cta-band,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .call-btn {
    display: inline-flex;
  }
}

@media (min-width: 980px) {
  .hamburger {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-menu a {
    padding: 9px 11px;
    font-size: 0.95rem;
  }

  .hero {
    padding: 92px 0 76px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  }

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

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

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

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand-name {
    max-width: 190px;
    font-size: 0.86rem;
  }

  .brand-sub {
    display: none;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

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

  .cta-band {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
