/* ==========================
   ALCHEMY (MAIN) PAGE
   Archetype Retreats
   File: static/css/alchemy.css
   ========================== */

/* Page shell */
.alchemy-page {
  background: #ffffff;
  color: #1f2422;
}

/* HERO */
.alchemy-hero {
  padding: 92px 0 62px;
  background:
    radial-gradient(1200px 600px at 30% 10%, rgba(125, 140, 115, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(16, 20, 18, 0.96), rgba(10, 12, 11, 0.98));
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.alchemy-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}

.alchemy-wrap.narrow {
  max-width: 820px;
}

.alchemy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(125, 140, 115, 0.16);
  border: 1px solid rgba(125, 140, 115, 0.34);
  color: rgba(255, 255, 255, 0.88);
}

.alchemy-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7d8c73;
  box-shadow: 0 0 0 4px rgba(125, 140, 115, 0.22);
}

.alchemy-hero h1 {
  font-size: 44px;
  letter-spacing: 0.3px;
  margin: 16px 0 10px;
}

.alchemy-subtitle {
  margin: 0 0 14px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 70ch;
}

.alchemy-lede {
  max-width: 66ch;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* CTA buttons (uses site button styles if present) */
.alchemy-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.alchemy-actions a {
  text-decoration: none;
}

/* SECTIONS */
.alchemy-section {
  padding: 58px 0;
  background: #ffffff;
  border-top: 1px solid #efece6;
}

.alchemy-section.alt {
  background: #faf9f6;
}

.alchemy-section h2 {
  font-size: 30px;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}

.alchemy-section p {
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.72);
  margin: 0 0 14px;
}

.alchemy-bullets {
  margin: 16px 0 0;
  padding-left: 18px;
}

.alchemy-bullets li {
  margin: 10px 0;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.72);
}

/* FEATURE GRID (optional blocks) */
.alchemy-grid {
  margin-top: 22px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.alchemy-card {
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.06);
}

.alchemy-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.78);
}

.alchemy-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.65;
  font-size: 14px;
}

/* STEPS (if you use numbered steps on main Alchemy page) */
.alchemy-steps {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 650;
  background: rgba(125, 140, 115, 0.18);
  border: 1px solid rgba(125, 140, 115, 0.35);
  color: #2f3a30;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.65;
}

/* TAGS */
.alchemy-tags {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.alchemy-tags span {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(125, 140, 115, 0.12);
  border: 1px solid rgba(125, 140, 115, 0.25);
  color: rgba(0, 0, 0, 0.70);
}

/* “SESSION BOX” (optional) */
.sessions-box {
  margin-top: 18px;
  padding: 22px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.sessions-box p {
  margin: 0 0 10px;
}

.sessions-box .small {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.60);
  margin: 0;
}

/* Inline link style (nice but subtle) */
.alchemy-section a {
  color: #2f5b54;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 91, 84, 0.25);
}

.alchemy-section a:hover {
  border-bottom-color: rgba(47, 91, 84, 0.6);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .alchemy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .alchemy-hero h1 {
    font-size: 36px;
  }
  .alchemy-hero {
    padding: 82px 0 56px;
  }
}

/* ==========================
   ALCHEMY — AUTHORITY BUTTONS
   ========================== */

/* Base button reset (in case other styles interfere) */
.alchemy-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* PRIMARY — Organizations / Join / Book */
.alchemy-actions .btn.primary {
  background: #1f2422; /* deep charcoal */
  color: #ffffff;
  border: 1px solid rgba(0,0,0,0.85);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.alchemy-actions .btn.primary:hover {
  background: #141817;
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

/* SECONDARY — Individuals / Learn More */
.alchemy-actions .btn.secondary {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.35);
}

.alchemy-actions .btn.secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* Ghost buttons (Explorer / InnerCube) */
.alchemy-actions .btn.ghost {
  background: transparent;
  color: rgba(0,0,0,0.75);
  border: 1px solid rgba(0,0,0,0.2);
}

.alchemy-actions .btn.ghost:hover {
  background: rgba(0,0,0,0.05);
}

/* Mobile stacking */
@media (max-width: 640px) {
  .alchemy-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .alchemy-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .alchemy-actions {
    gap: 10px;
  }
}
