:root {
  --maroon: #151515;
  --maroon-dark: #000000;
  --gold: #c99522;
  --cream: #ffffff;
  --white: #ffffff;
  --charcoal: #1d1b20;
  --muted: #625b66;
  --line: rgba(0, 0, 0, 0.1);
  --night: #ffffff;
  --night-soft: #faf7f1;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--charcoal);
  background: #ffffff;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  display: none;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", "Inter", Arial, sans-serif;
  font-weight: 800;
  color: var(--maroon);
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--maroon);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.16);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #3a3038;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.ticker-bar {
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  z-index: 49;
  overflow: hidden;
  color: #3a2200;
  background: #ffffff;
  border-top: 1px solid rgba(201, 149, 34, 0.28);
  border-bottom: 1px solid rgba(201, 149, 34, 0.28);
  box-shadow: 0 12px 26px rgba(201, 149, 34, 0.12);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: tickerScroll 30s linear infinite;
}

.ticker-track span {
  flex: 0 0 auto;
  padding: 9px 36px;
  color: #4f2b00;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
  text-shadow: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.04);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--maroon);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  min-height: 94vh;
  overflow: hidden;
  padding: 166px clamp(20px, 6vw, 92px) 72px;
  color: var(--charcoal);
  background: #ffffff;
  background-image: none;
}

.hero::after {
  display: none;
}

.hero-stars {
  display: none;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--maroon);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(40px, 8vw, 90px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h2 {
  max-width: 740px;
  margin: 24px 0 0;
  color: #2e252d;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.18;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #2c1d05;
  background: #f3d56f;
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.28);
}

.btn-glass {
  color: var(--maroon);
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
}

.btn-maroon {
  color: var(--white);
  background: var(--maroon);
}

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

.zodiac-wheel {
  position: absolute;
  width: min(80vw, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 149, 34, 0.34);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  animation: spin 34s linear infinite;
}

.zodiac-wheel::before,
.zodiac-wheel::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px dashed rgba(0, 0, 0, 0.14);
  border-radius: 50%;
}

.zodiac-wheel::after {
  inset: 28%;
}

.zodiac-wheel span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  margin-left: -46px;
  color: #333333;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  transform: rotate(calc(var(--i) * 30deg)) translateY(-228px) rotate(calc(var(--i) * -30deg));
}

.zodiac-wheel span:nth-child(1) { --i: 0; }
.zodiac-wheel span:nth-child(2) { --i: 1; }
.zodiac-wheel span:nth-child(3) { --i: 2; }
.zodiac-wheel span:nth-child(4) { --i: 3; }
.zodiac-wheel span:nth-child(5) { --i: 4; }
.zodiac-wheel span:nth-child(6) { --i: 5; }
.zodiac-wheel span:nth-child(7) { --i: 6; }
.zodiac-wheel span:nth-child(8) { --i: 7; }
.zodiac-wheel span:nth-child(9) { --i: 8; }
.zodiac-wheel span:nth-child(10) { --i: 9; }
.zodiac-wheel span:nth-child(11) { --i: 10; }
.zodiac-wheel span:nth-child(12) { --i: 11; }

.astro-orbit {
  position: relative;
  display: grid;
  width: min(50vw, 270px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
}

.astro-core {
  display: grid;
  width: 146px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  font-size: 58px;
}

.section,
.section-band,
.site-footer {
  padding: 88px clamp(20px, 6vw, 92px);
}

.section-band {
  background: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .section-kicker {
  justify-content: center;
}

.section h2,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  color: var(--maroon);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
}

.section-heading p {
  margin: 14px auto 0;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.stat-card,
.glass-card,
.feature-card,
.testimonial-card,
.process-step,
.about-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 26px 20px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 38px;
  align-items: center;
}

.about {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

.about::before,
.about::after {
  display: none;
}

.about .section-kicker,
.about-grid {
  position: relative;
  z-index: 1;
}

.about p {
  color: var(--muted);
  max-width: 980px;
}

.about h2 {
  color: var(--maroon);
}

.about-panel {
  padding: 34px;
  border-color: var(--line);
  background: #ffffff;
  color: var(--charcoal);
  box-shadow: var(--shadow);
}

.about-panel p {
  color: var(--muted);
}

.panel-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  font-size: 32px;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

.card-grid,
.testimonial-grid,
.feature-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

.services::before,
.services::after {
  display: none;
}

.services .section-heading {
  position: relative;
  z-index: 1;
}

.services .section-kicker {
  color: var(--gold);
}

.services .section-heading p {
  color: var(--muted);
}

.services .glass-card {
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.glass-card {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 220px;
  padding: 26px;
  background: var(--panel);
  backdrop-filter: blur(16px);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.service-image {
  order: -1;
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-bottom: 4px solid var(--gold);
  background: #ffffff;
}

.services .card-icon {
  margin: 22px 24px 0;
}

.services .glass-card h3 {
  margin: 20px 24px 8px;
}

.services .glass-card p {
  padding: 0 24px 28px;
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.58);
  transform: translateY(-6px);
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 50%;
  background: #ffffff;
  font-size: 25px;
}

.glass-card h3,
.process-step h3,
.about-panel h3 {
  margin: 20px 0 8px;
  color: var(--maroon);
  font-size: 20px;
  line-height: 1.25;
}

.glass-card p,
.testimonial-card p {
  margin: 0;
  color: var(--muted);
}

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

.feature-card {
  padding: 24px;
  color: var(--maroon);
  background: #ffffff;
  font-weight: 800;
}

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

.testimonial-card {
  padding: 28px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
}

.testimonial-card span {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
}

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

.process-step {
  position: relative;
  min-height: 170px;
  padding: 24px;
  overflow: hidden;
}

.process-step span {
  color: var(--gold);
  font-size: 44px;
  font-weight: 800;
}

.process-step h3 {
  margin-top: 12px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

details {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--maroon);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact {
  background: #ffffff;
}

.contact-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  background: var(--panel-strong);
  backdrop-filter: blur(18px);
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) repeat(2, minmax(270px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-details p {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.contact-details a {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--maroon);
  font-size: 22px;
}

.site-footer p {
  max-width: 620px;
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.float-action {
  position: fixed;
  z-index: 60;
  display: inline-flex;
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(32, 32, 36, 0.18);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.float-call {
  left: 18px;
  bottom: 18px;
  color: var(--white);
  background: #e71313;
  box-shadow: 0 0 0 8px rgba(231, 19, 19, 0.16), 0 18px 36px rgba(32, 32, 36, 0.2);
}

.float-whatsapp {
  right: 18px;
  bottom: 18px;
  color: var(--white);
  background: #18b64f;
  box-shadow: 0 0 0 8px rgba(24, 182, 79, 0.16), 0 18px 36px rgba(32, 32, 36, 0.2);
}

.float-action svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes starDrift {
  to {
    background-position: 96px 96px, 166px 180px, 246px 142px;
  }
}

@keyframes tickerScroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes servicesLines {
  to {
    transform: translateX(8%);
  }
}

@keyframes servicesShimmer {
  from {
    transform: translateX(-4%);
    opacity: 0.5;
  }

  to {
    transform: translateX(4%);
    opacity: 0.88;
  }
}

@media (max-width: 1100px) {
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    padding: 12px 18px;
  }

  .ticker-bar {
    top: 65px;
  }

  .ticker-track span {
    padding-inline: 24px;
    font-size: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 65px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 152px;
    padding-bottom: 56px;
  }

  .hero-visual {
    min-height: 330px;
    margin-top: 18px;
  }

  .zodiac-wheel {
    width: min(88vw, 360px);
  }

  .zodiac-wheel span {
    transform: rotate(calc(var(--i) * 30deg)) translateY(-164px) rotate(calc(var(--i) * -30deg));
  }

  .about-grid,
  .stats,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .section,
  .section-band,
  .site-footer {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero-actions,
  .footer-links,
  .site-footer {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .testimonial-grid,
  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .glass-card {
    min-height: auto;
  }

  .float-action {
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    font-size: 12px;
  }

  .float-action svg {
    width: 28px;
    height: 28px;
  }
}

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