/* ============================================================
   SINGBLUE — Homepage styles
   ============================================================ */

/* Body */
body {
  background: var(--white);
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px var(--gutter) var(--space-2xl);
  background: var(--white);
}

.hero-statement {
  font-family: 'Roboto Slab', serif;
  font-size: var(--text-lead);
  font-weight: 500;
  color: var(--red);
  margin-bottom: 36px;
  letter-spacing: -0.005em;
  animation: up 0.8s 0.1s both;
}

.hero-h1 {
  font-size: var(--text-display);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 44px;
  max-width: 1200px;
  animation: up 0.9s 0.2s both;
}

.hero-h1 .red { color: var(--red); }

.hero-body {
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--body-clr);
  max-width: 720px;
  margin-bottom: 56px;
  animation: up 0.9s 0.35s both;
}

.hero-cta {
  animation: up 0.9s 0.5s both;
  /* btn--ink colours already in global.css */
}

/* ─── STATEMENT SECTION ─── */
.section-statement {
  background: var(--warm);
  padding: var(--space-4xl) var(--gutter);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}

.stmt-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.stmt-large {
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: var(--leading-snug);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--space-2xl);
  max-width: 1100px;
}

.stmt-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.stmt-col h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.stmt-col p {
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--body-clr);
}

.stmt-col p strong {
  font-weight: 600;
  color: var(--ink);
}

/* ─── DIAGNOSTIC SECTION ─── */
.section-diag {
  background: var(--white);
  padding: var(--space-4xl) var(--gutter);
}

.diag-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.diag-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  max-width: var(--container-tight);
}

.diag-title {
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
  color: var(--ink);
}

.diag-intro {
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--body-clr);
}

.diag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--light);
  border: 1px solid var(--light);
}

.diag-card {
  background: var(--white);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background var(--transition-fast);
}

.diag-card:hover { background: var(--warm); }

.diag-card-q {
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.diag-card-divider {
  width: 100%;
  height: 1px;
  background: var(--light);
  margin-bottom: 20px;
}

.diag-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}

.diag-card-tags {
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--mid);
  margin-bottom: var(--space-md);
}

.diag-card-cta {
  font-size: 1rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: letter-spacing var(--transition-mid);
  margin-top: auto;
}

.diag-card-cta:hover { letter-spacing: 0.01em; }

/* ─── SERVICES ─── */
.section-services {
  padding: var(--space-4xl) var(--gutter);
  background: var(--warm);
  border-top: 1px solid var(--light);
}

.services-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.services-title {
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: var(--container-tight);
}

.services-sub {
  font-size: var(--text-lead);
  font-weight: 400;
  color: var(--body-clr);
  margin-bottom: var(--space-xl);
  max-width: 700px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light);
  border: 1px solid var(--light);
}

.svc-card {
  background: var(--white);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: background var(--transition-mid);
}

.svc-card:hover { background: var(--warm-2); }

.svc-num {
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
}

.svc-name {
  font-family: 'Roboto Slab', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.svc-desc {
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--body-clr);
  flex: 1;
}

.svc-meta {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--teal);
  padding-top: 18px;
  border-top: 1px solid var(--light);
}

/* ─── QUOTE ─── */
.section-quote {
  background: var(--ink);
  padding: var(--space-4xl) var(--gutter);
  text-align: center;
}

.quote-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Roboto Slab', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--red);
  margin-bottom: 36px;
  font-weight: 700;
}

.quote-text {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.quote-attr {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.quote-attr-meta {
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--teal);
}

/* ─── FINAL CTA ─── */
.section-cta {
  background: var(--white);
  padding: 180px var(--gutter);
  text-align: center;
}

.cta-inner {
  max-width: var(--container-text);
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 36px;
}

.cta-title .red { color: var(--red); }

.cta-body {
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--body-clr);
  max-width: 680px;
  margin: 0 auto 56px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    padding: 120px var(--gutter-mobile) var(--space-xl);
  }

  .section-statement,
  .section-diag,
  .section-services,
  .section-quote,
  .section-cta {
    padding: 100px var(--gutter-mobile);
  }

  .stmt-cols {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .diag-grid {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }
}
