/* ============================================
    Boho block patterns
    Used by the boho/* section patterns — loaded on the
    front end (all pages) and in the block editor.
============================================ */

/* ============================================
    FULL-BLEED SECTIONS (classic-theme safe)
    The front-page design pushes bands edge to edge
    while keeping content centered at 1200px.
============================================ */
.boho-hero.alignfull,
.boho-marquee.alignfull,
.boho-section.alignfull,
.boho-cta.alignfull,
.boho-contact.alignfull {
  margin-inline: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

/* ============================================
    SECTION WRAPPERS
============================================ */
.boho-section {
  padding: 80px 0;
}

.boho-band {
  background: var(--paper-alt);
}

/* ============================================
    SECTION HEADER
============================================ */
.boho-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.boho-section-header .boho-tag {
  margin-bottom: 14px;
}

/* ============================================
    TAG PILL
============================================ */
.boho-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  max-width: 100%;
}

.boho-tag-light {
  background: rgba(16, 185, 129, 0.15);
}

/* ============================================
    HERO
============================================ */
.boho-hero .boho-tag {
  margin-bottom: 24px;
}

.boho-headline {
  margin-bottom: 20px;
}

.boho-headline mark,
.boho-contact-headline mark {
  background-color: transparent;
  color: var(--accent);
}

.boho-lead {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.boho-hero-media .wp-block-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.boho-hero-media .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boho-trust {
  gap: 6px 18px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 32px;
}

.boho-trust p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.boho-trust p:first-child::before {
  content: '';
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  animation: boho-pulse 2s ease-in-out infinite;
}

@keyframes boho-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============================================
    MARQUEE STRIP
============================================ */
.boho-marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--paper-alt);
  padding: 18px 24px;
  overflow: hidden;
}

.boho-marquee-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ============================================
    CARDS
============================================ */
.boho-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.boho-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.boho-card-top {
  align-items: center;
  margin-bottom: 16px;
}

.boho-card-top p,
.boho-blog-meta p {
  margin: 0;
}

.boho-number {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.boho-icon-tile {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  line-height: 1;
}

.boho-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.boho-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

.boho-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.boho-link a {
  color: inherit;
}

/* ============================================
    IMPACT
============================================ */
.boho-metric {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

/* ============================================
    INDUSTRIES
============================================ */
.boho-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.boho-industry-card {
  overflow: hidden;
  padding: 0;
  background: var(--paper);
}

.boho-industry-cover {
  min-height: 190px;
}

.boho-industry-card .boho-card-desc {
  padding: 16px 20px 20px;
  margin: 0;
}

/* ============================================
    CTA BAND
============================================ */
.boho-cta {
  background: var(--paper-alt);
  padding: 80px 24px;
}

.boho-cta .has-text-align-center.boho-tag {
  margin-bottom: 14px;
}

.boho-cta-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ============================================
    BLOG
============================================ */
.boho-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.boho-blog-card {
  padding: 28px;
}

.boho-blog-meta {
  align-items: center;
  margin-bottom: 12px;
}

.boho-pill {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: var(--radius-xl);
}

.boho-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================
    CONTACT (dark)
============================================ */
.boho-contact-headline {
  color: #ffffff;
  margin-bottom: 16px;
}

.boho-contact-body {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.boho-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.boho-contact-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.boho-contact-link a {
  color: inherit;
}

/* ============================================
    RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .boho-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .boho-section { padding: 60px 0; }
  .boho-grid { grid-template-columns: 1fr; }
}