/* ================================================================
   BlueGlove — home.css
   ================================================================ */

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 5rem) var(--pad-x) 7rem;
}
.hero__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(184,115,51,0.13);
}
.hero__ring--1 { width: 580px; height: 580px; top: -12%; right: -6%; }
.hero__ring--2 { width: 380px; height: 380px; top: 2%;   right: 6%;  border-color: rgba(184,115,51,0.08); }
.hero__ring--3 { width: 180px; height: 180px; top: 14%;  right: 18%; border-color: rgba(184,115,51,0.2); }

.hero__inner { max-width: var(--max-w); margin: 0 auto; width: 100%; position: relative; z-index: 1; }

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}
.hero__heading {
  margin-top: 1rem;
  color: var(--off-white);
  opacity: 0;
  animation: fadeUp 0.6s ease 0.25s forwards;
}
.hero__heading em { font-style: italic; color: var(--copper-light); }
.hero__sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 46ch;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.55s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ── Email capture strip ── */
.capture {
  background: var(--copper-pale);
  padding: 3.5rem var(--pad-x);
  border-top: 1px solid rgba(184,115,51,0.2);
  border-bottom: 1px solid rgba(184,115,51,0.2);
}
.capture__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.capture__text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.capture__text p  { margin-top: 0.6rem; color: var(--gray-600); font-size: 0.95rem; }

.capture__form { display: flex; flex-direction: column; gap: 0.75rem; }
.capture__row  { display: flex; gap: 0.5rem; }

.capture__form input[type="text"],
.capture__form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.capture__form input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}
.capture__note { font-size: 0.75rem; color: var(--gray-600); }

/* Status */
.capture-status { font-size: 0.85rem; padding: 0.6rem 0; display: none; }
.capture-status.success { display: block; color: #2d6a2d; }
.capture-status.error   { display: block; color: #8c1e1e; }

/* ── Workshops list ── */
.workshops { padding: 5.5rem var(--pad-x); }
.workshops__inner { max-width: var(--max-w); margin: 0 auto; }
.workshops__header { margin-bottom: 3rem; }

.workshop-list { display: flex; flex-direction: column; gap: 1px; background: var(--gray-200); }

.workshop-item {
  background: var(--off-white);
  padding: 1.75rem 2rem 1.75rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.5rem;
  align-items: center;
  border-left: 3px solid transparent;
  transition: border-color var(--ease), background var(--ease);
}
.workshop-item:hover {
  border-left-color: var(--copper);
  background: var(--white);
}
.workshop-item__badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--copper-pale);
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.workshop-item__badge--free {
  background: #e6f4ea;
  color: #2d6a2d;
}
.workshop-item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.workshop-item p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; max-width: 52ch; }
.workshop-item .btn { white-space: nowrap; flex-shrink: 0; }

/* ── Book CTA band ── */
.book-band {
  background: var(--charcoal);
  padding: 5rem var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-band::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.book-band__inner { max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }
.book-band h2     { color: var(--off-white); }
.book-band h2 em  { font-style: italic; color: var(--copper-light); }
.book-band p      { margin: 1rem auto 0; color: var(--gray-400); font-size: 1rem; }
.book-band__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 780px) {
  .hero {
    padding: calc(var(--nav-h) + 3.5rem) var(--pad-x) 5rem;
    min-height: 90vh;
  }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; text-align: center; }

  .capture__inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .capture__row   { flex-direction: column; }
  .capture-btn    { width: 100%; text-align: center; }

  .workshop-item  {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
  .workshop-item .btn { width: 100%; text-align: center; }

  .book-band__actions .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: calc(var(--nav-h) + 2.5rem) var(--pad-x) 4rem; }
}
