/* ============================================================
   FACE HUB TEMPLATE
   Layout styles for the face hub page.
   Shared base (tokens, nav, breadcrumb, footer, typography,
   buttons) is in main.css — not repeated here.
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hub-hero {
  padding: 5.5rem 3.5rem 5rem;
  border-bottom: 0.5px solid var(--surface-alt);
  max-width: 820px;
}

.hub-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hub-eyebrow::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: var(--accent);
  display: block;
}

.hub-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.6rem;
}
.hub-h1 em { font-style: italic; color: var(--accent); }

.hub-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 640px;
}

/* ============================================================
   PROCEDURE GRID
   ============================================================ */
.proc-section {
  padding: 4rem 3.5rem;
  border-bottom: 0.5px solid var(--surface-alt);
}

.proc-section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 0.5px solid var(--surface-alt);
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--surface-alt);
}

.proc-card {
  background: var(--bg);
  padding: 2rem 1.8rem;
  text-decoration: none;
  display: block;
  transition: background 0.15s;
}
.proc-card:hover { background: var(--surface); }

.proc-card-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.proc-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.proc-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.proc-card-arrow {
  font-size: 11px;
  color: var(--accent);
  display: block;
}

/* ============================================================
   PLANNING BLOCK
   ============================================================ */
.planning-block {
  padding: 5rem 3.5rem;
  border-bottom: 0.5px solid var(--surface-alt);
}

.planning-block-inner { max-width: 640px; }

.planning-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.planning-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.planning-h em { font-style: italic; color: var(--accent); }

.planning-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
}

/* ============================================================
   RELATED BLOCK
   ============================================================ */
.related-block {
  padding: 4rem 3.5rem;
  border-bottom: 0.5px solid var(--surface-alt);
}

.related-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.related-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.related-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-decoration: none;
  border: 0.5px solid var(--surface-alt);
  padding: 0.6rem 1.1rem;
  transition: border-color 0.15s, color 0.15s;
}
.related-link:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 0.5px solid var(--surface-alt);
}

.cta-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.25;
}

.cta-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

/* btn-p / btn-s defined in main.css */

/* ============================================================
   RESPONSIVE — face hub (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .hub-hero { padding: 3.5rem 1.5rem 3rem; }
  .hub-h1 { font-size: 40px; }
  .proc-section { padding: 3rem 1.5rem; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .planning-block { padding: 3.5rem 1.5rem; }
  .related-block { padding: 3rem 1.5rem; }
  .cta-section { padding: 3.5rem 1.5rem; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hub-h1 { font-size: 32px; }
  .proc-grid { grid-template-columns: 1fr; }
}
