:root {
  --bg-deep: #131e46;
  --bg-mid: #213b7a;
  --bg-surface: #2a4a8f;
  --bg-surface-soft: #34599f;
  --text-main: #f8f3e9;
  --text-muted: #d8ddef;
  --gold: #f2ba64;
  --gold-soft: #ffdca3;
  --line: rgba(255, 220, 163, 0.28);
  --ok: #9ee3cf;
  --shadow: 0 24px 54px rgba(8, 11, 26, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(1200px 800px at 5% -10%, rgba(122, 219, 198, 0.18), transparent 65%),
    radial-gradient(900px 700px at 95% 0%, rgba(242, 186, 100, 0.2), transparent 60%),
    linear-gradient(165deg, var(--bg-deep) 0%, #1b2f66 45%, var(--bg-mid) 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.2;
  mask-image: radial-gradient(circle at center, black 0%, transparent 82%);
}

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

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

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

h3 {
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding-top: 2.5rem;
}

.eyebrow {
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
}

.eyebrow::before {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: var(--gold-soft);
  opacity: 0.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(19, 30, 70, 0.7);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  background: linear-gradient(155deg, rgba(242, 186, 100, 0.24), rgba(122, 219, 198, 0.2));
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.24s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text-main);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text-main);
  padding: 0.4rem 0.9rem;
  font: inherit;
}

.hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -90px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 220, 163, 0.25), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy p {
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(130deg, rgba(242, 186, 100, 0.25), rgba(122, 219, 198, 0.25));
  color: var(--text-main);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.hero-card,
.card,
.contact-card,
.legal-box,
.price-card {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(46, 71, 130, 0.9), rgba(30, 49, 97, 0.93));
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.3rem;
}

.moon {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 40% 34%, rgba(255, 239, 207, 0.88), rgba(242, 186, 100, 0.22) 52%, transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(122, 219, 198, 0.22), transparent 72%),
    linear-gradient(170deg, #213b7a, #172a56);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.moon-details {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.moon-details li {
  border: 1px solid rgba(255, 220, 163, 0.2);
  border-radius: 0.75rem;
  padding: 0.65rem;
  background: rgba(15, 26, 58, 0.45);
}

.moon-details strong {
  display: block;
  color: var(--text-main);
  font-size: 0.9rem;
}

.moon-details span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

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

.card {
  padding: 1.35rem;
}

.card h3,
.price-card h3,
.legal-box h3 {
  margin-bottom: 0.75rem;
}

.service-list li,
.check-list li,
.legal-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.service-list li::before,
.check-list li::before,
.legal-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
  font-size: 0.75rem;
  top: 0.24rem;
}

.band {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(23, 39, 84, 0.6);
}

.band-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.chip {
  border: 1px solid rgba(255, 220, 163, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.price-card {
  padding: 1.45rem;
}

.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.quote {
  margin: 0;
  border-left: 2px solid rgba(255, 220, 163, 0.5);
  padding: 0.5rem 0 0.5rem 1rem;
}

.quote p {
  font-style: italic;
}

.quote cite {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-card {
  padding: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.contact-lines {
  display: grid;
  gap: 0.4rem;
}

.contact-lines strong {
  font-size: 1.1rem;
}

.meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  background: rgba(21, 35, 76, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-list {
  display: grid;
  gap: 0.45rem;
}

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

.footer-list a:hover {
  color: var(--text-main);
}

.tiny {
  margin-top: 1.3rem;
  font-size: 0.78rem;
  color: #c1b9a5;
}

.copyright {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 220, 163, 0.25);
  padding-top: 1rem;
  color: #c6bcaa;
  font-size: 0.8rem;
}

.page-hero {
  padding: 4.5rem 0 2.2rem;
}

.page-hero p {
  max-width: 72ch;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(23, 38, 79, 0.6);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  border-bottom: 1px solid rgba(255, 220, 163, 0.22);
  padding: 0.95rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

th {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-soft);
  font-size: 1.1rem;
  background: rgba(38, 63, 121, 0.9);
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.legal-box {
  padding: 1.4rem;
}

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

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

@media (max-width: 960px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .split,
  .footer-grid,
  .zodiac-grid,
  .forecast-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    width: min(360px, calc(100% - 2rem));
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0.9rem;
    background: rgba(25, 42, 86, 0.96);
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .contact-card {
    align-items: flex-start;
  }
}
