.homepage {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
}

.homepage-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Hero Section */
.hero {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 28px 90px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 20px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
  .wheel-box {
    order: -1;
    margin: 0 auto 20px;
  }
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.18;
  color: #fff;
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 16px;
  color: var(--ink-dim);
  max-width: 440px;
  margin-bottom: 34px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  display: inline-block;
  transition: transform .15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c99a5c);
  color: #1a1228;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

/* Zodiac Wheel */
.wheel-box {
  position: relative;
  width: 380px;
  height: 380px;
  justify-self: center;
}

.wheel-box svg {
  width: 100%;
  height: 100%;
}

.ring-outer {
  animation: spin 120s linear infinite;
}

.ring-inner {
  animation: spin 90s linear infinite reverse;
}

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

@media (prefers-reduced-motion: reduce) {
  .ring-outer,
  .ring-inner {
    animation: none;
  }
}

.wheel-glow {
  position: absolute;
  inset: 20%;
  background: radial-gradient(circle, rgba(216, 180, 124, 0.18), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.wheel-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.wheel-center-label .date {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* Tiles Section */
.tiles {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 760px) {
  .tiles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .tiles {
    grid-template-columns: 1fr;
  }
}

.tile {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s ease;
  display: block;
}

.tile:hover {
  border-color: var(--violet);
}

.tile svg {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  display: block;
}

.tile h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tile p {
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* Teaser Section */
.teaser {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 28px;
}

.teaser-inner {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 44px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.teaser-inner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(155, 127, 230, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.teaser-inner h2 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.teaser-inner p {
  color: var(--ink-dim);
  font-size: 14px;
  max-width: 420px;
}

/* Blog Section */
.blog-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px 90px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.section-head a {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 760px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
    border-color: var(--violet);
}

.blog-card .thumb {
  height: 120px;
  background: linear-gradient(135deg, #2b1f4a, #1b1530);
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-card .thumb::after {
  content: "✦";
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--gold);
  font-size: 14px;
  opacity: 0.7;
}

.blog-card .body {
  padding: 18px 20px;
  flex-grow: 1;
}

.blog-card h4 {
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.5;
}
