/* ==========================================================================
   Homepage — styles used only on index.php.
   ========================================================================== */

.hero {
  position: relative;
  background: var(--bg-page);
}

.hero__inner {
  padding-block: 90px 120px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero__title {
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 0.98;
}

.hero__title .text-editorial {
  font-size: clamp(2.9rem, 6.4vw, 5.75rem);
  line-height: 0.9;
}

.hero__lead {
  max-width: 44ch;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-lg) var(--space-lg) 0;
}

.hero__visual-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  height: 100%;
  border: 1px solid var(--gold-ring);
  border-radius: var(--radius-xl);
  z-index: 0;
}

.hero__glow {
  position: absolute;
  width: 74%;
  height: 66%;
  left: 8%;
  background: radial-gradient(circle at 50% 45%, rgba(200, 169, 106, 0.4), rgba(200, 169, 106, 0) 68%);
  filter: blur(20px);
  z-index: 0;
  animation: glowbreath 7s var(--ease-soft) infinite;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 92%;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-raised);
}

@keyframes glowbreath {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.07); }
}

/* ---- Monthly reset (dark, centered) ---- */
.reset-section {
  position: relative;
  overflow: hidden;
}

.reset-section__glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 620px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.2), rgba(200, 169, 106, 0) 65%);
  filter: blur(12px);
}

.reset-section__inner {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding-block: var(--space-5xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.reset-section__pull-quote {
  margin: 8px 0 0;
  font-family: var(--font-editorial);
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  max-width: 30ch;
}

.reset-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 760px;
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.reset-highlight {
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.reset-highlight:first-child {
  border-left: none;
}

.reset-highlight__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
}

.reset-highlight__desc {
  font-size: 14px;
  color: var(--text-on-dark-muted);
}
