// ============================================
// Services — 6 cards
// ============================================

function Services() {
  const PC = window.PC;
  return (
    <section className="section services" id="services">
      <div className="wrap">
        <header className="section-head">
          <div className="section-head__l">
            <span className="eyebrow reveal">02 — Services</span>
            <h2 className="h-1 reveal" data-d="1">
              Six ways to <span className="serif it gold-text">sell a home</span><br/>
              before it exists.
            </h2>
          </div>
          <div className="section-head__r reveal" data-d="2">
            <p className="lead">
              Stills, motion, immersive, configurable, automated. Pick what your project demands — we deliver to broadcast and editorial standards.
            </p>
          </div>
        </header>

        <div className="services__grid">
          {PC.services.map((s, i) => (
            <article key={s.id} className="service reveal" data-d={(i % 3) + 1}>
              <div className="service__top">
                <span className="num service__num">{s.id}</span>
                <ServiceGlyph kind={s.glyph}/>
              </div>
              <h3 className="h-3 service__title">{s.title}</h3>
              <p className="body service__desc">{s.desc}</p>
              <div className="service__foot">
                <span className="label">Starting</span>
                <span className="service__price">
                  <span className="serif it gold-text">{s.price}</span>
                  <span className="muted">{s.unit}</span>
                </span>
              </div>
            </article>
          ))}
        </div>
      </div>
    </section>
  );
}

window.Services = Services;
