@import url("../fonts/fonts.css");

:root {
  --rose: #f43f5e;
  --purple: #9333ea;
  --gold: #eab308;
  --bg: #fff7fb;
  --night: #26123b;
  --text: #33203c;
  --muted: #7c6480;
  --card: #ffffff;
  --border: #f0dfe9;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2.5rem;
  --aurora: linear-gradient(135deg, var(--purple) 0%, var(--rose) 55%, var(--gold) 100%);
  --shadow-soft: 0 18px 45px -22px rgba(147, 51, 234, 0.35);
  --shadow-glow: 0 0 0 1px rgba(234, 179, 8, 0.35), 0 20px 50px -25px rgba(244, 63, 94, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

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

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

main {
  flex: 1;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--purple);
  font-weight: 600;
}

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

.text-aurora {
  background: var(--aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--aurora);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

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

.btn-ghost {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 247, 251, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  max-width: 1120px;
  margin: 0 auto;
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--aurora);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.nav a {
  font-size: 0.88rem;
  color: var(--muted);
}

.nav a:hover,
.nav a.active {
  color: var(--rose);
  font-weight: 500;
}

.nav .btn {
  padding: 10px 22px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 8px 20px 16px;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Hero */
.hero {
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  margin-top: 20px;
}

.hero p.lead {
  margin-top: 22px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
  max-width: 26rem;
  text-align: center;
}

.stats .card {
  padding: 16px 10px;
}

.stats strong {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.stats span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 3rem;
  background: var(--aurora);
  opacity: 0.2;
  filter: blur(48px);
}

.hero-media img {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center 30%;
}

/* Sections */
section.block {
  padding: 64px 0;
}

section.block h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  max-width: 34rem;
}

section.block > .wrap > p.muted {
  margin-top: 12px;
  max-width: 38rem;
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

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

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

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fbe9f3;
  color: #4c2a52;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.feature h3 {
  margin-top: 16px;
  font-size: 1.25rem;
}

.feature p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.night {
  background: linear-gradient(160deg, #22103a 0%, #3c1c4d 60%, #7a2f4a 100%);
  color: #fdf3f8;
  border: 0;
  padding: 44px;
}

.night h2 {
  color: #fdf3f8;
  margin-top: 14px;
}

.night .eyebrow {
  color: var(--gold);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.chip {
  border: 1px solid rgba(253, 243, 248, 0.25);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: rgba(253, 243, 248, 0.85);
}

.report {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.report .star {
  font-size: 1.5rem;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

.signs-mini {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 32px;
  list-style: none;
}

.signs-mini a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 8px;
  font-size: 0.85rem;
}

.signs-mini .sym {
  font-size: 1.5rem;
  color: var(--gold);
}

.newsletter {
  background: var(--aurora);
  color: #fff;
  border: 0;
  padding: 44px;
}

.newsletter h2 {
  color: #fff;
  max-width: 28rem;
}

.newsletter p {
  margin-top: 12px;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.9);
}

form.inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  max-width: 28rem;
}

form.inline input {
  flex: 1 1 200px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font: inherit;
  font-size: 0.9rem;
}

form.inline button {
  background: var(--night);
  color: #fdf3f8;
}

/* Page headers + horoscope */
.page-head {
  padding: 56px 0 8px;
}

.page-head h1 {
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  margin-top: 12px;
  max-width: 32rem;
}

.page-head p {
  margin-top: 16px;
  max-width: 38rem;
  color: var(--muted);
}

.tabs,
.sign-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tab,
.sign-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 20px;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab:hover,
.sign-btn:hover {
  color: var(--rose);
  border-color: var(--rose);
}

.tab.active {
  background: var(--aurora);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.sign-btn.active {
  background: #fbe9f3;
  border-color: var(--gold);
  color: #4c2a52;
}

.horoscope {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  margin-top: 36px;
}

.horoscope .night {
  border-radius: var(--radius-lg);
  padding: 32px;
}

.horoscope .night .sym {
  font-size: 3rem;
  color: var(--gold);
}

.topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.topics .card {
  padding: 20px;
}

.topics h3 {
  font-size: 1.05rem;
}

.topics p {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}

.sign-card .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.sign-card .sym {
  font-size: 1.8rem;
  color: var(--gold);
}

.sign-card .dates {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 4px;
}

.sign-card .desc {
  margin-top: 16px;
  font-size: 0.9rem;
}

.sign-card dl {
  margin-top: 18px;
  font-size: 0.88rem;
  display: grid;
  gap: 10px;
}

.sign-card dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.faq {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.faq dt {
  font-weight: 600;
}

.faq dd {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  margin-top: 44px;
}

.contact ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  display: block;
}

form.stack {
  display: grid;
  gap: 16px;
}

form.stack label {
  font-size: 0.88rem;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

form.stack input,
form.stack textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 12px 16px;
  font: inherit;
  font-size: 0.9rem;
  background: var(--bg);
}

form.stack input:focus,
form.stack textarea:focus,
form.inline input:focus {
  outline: 2px solid var(--rose);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  margin-top: 80px;
  background: var(--night);
  color: #fdf3f8;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 56px 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.site-footer h2,
.site-footer h3 {
  color: #fdf3f8;
}

.site-footer p,
.site-footer li,
.site-footer address {
  color: rgba(253, 243, 248, 0.72);
  font-size: 0.9rem;
  font-style: normal;
}

.site-footer ul {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(253, 243, 248, 0.12);
  padding: 18px 20px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(253, 243, 248, 0.6);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 88px 0;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .grid-3,
  .grid-2,
  .topics {
    grid-template-columns: 1fr;
  }
  .horoscope,
  .contact,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .signs-mini {
    grid-template-columns: repeat(3, 1fr);
  }
  .night,
  .newsletter {
    padding: 28px;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .grid-3,
  .grid-2,
  .topics {
    grid-template-columns: repeat(2, 1fr);
  }
  .signs-mini {
    grid-template-columns: repeat(4, 1fr);
  }
}
