/* =========================================================
   Chakradhari — Layout scaffolding
   ========================================================= */
@layer layout {

  .wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

  .eyebrow {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }
  .eyebrow::before {
    content: "";
    width: 22px; height: 1px;
    background: var(--blue);
    opacity: 0.7;
  }

  section.band { padding: clamp(4.5rem, 10vw, 8rem) 0; position: relative; }
  .section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
  .section-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-top: 1rem;
    letter-spacing: -0.025em;
    color: var(--white);
  }
  .section-head p {
    margin-top: 1.2rem;
    font-size: 1.12rem;
    color: var(--text-soft);
    max-width: 40rem;
  }
}
