/* ═══════════════════════════════════════════════════════
   SUITE PAGE — Shared Division Page Styles
   Each page sets --brand, --brand-dim, --brand-glow
═══════════════════════════════════════════════════════ */

/* ── Brand Override ─────────────────────────────────── */
.suite-page .nav-cta {
  color: var(--brand);
  border-color: var(--brand-dim);
}

.suite-page .nav-cta:hover {
  background: var(--brand);
  color: var(--bg);
}

.suite-page .nav-link-blog::after {
  background: var(--brand);
}

.suite-page .nav-link-blog:hover {
  color: var(--brand);
}

.suite-page .logo-c {
  color: var(--brand);
}

/* ── Division Hero ──────────────────────────────────── */
.division-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 140px 0 80px;
}

.division-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.division-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.12;
  pointer-events: none;
}

.division-hero-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid var(--brand-dim);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.division-hero-name {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--t1);
  margin-bottom: 16px;
}

.division-hero-name .brand-dot {
  color: var(--brand);
}

.division-hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.3;
}

.division-hero-desc {
  color: var(--t2);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  max-width: 560px;
}

.division-hero-accent {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 800;
  color: var(--brand);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ── Back Link ──────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 20px;
  transition: color 0.2s;
  text-decoration: none;
}

.back-link:hover {
  color: var(--brand);
}

/* ── Services Grid ──────────────────────────────────── */
.services-section {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 21, 37, 0.06);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.service-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
}

.service-desc {
  color: var(--t2);
  font-size: 13px;
  line-height: 1.7;
}

/* ── Process Section ────────────────────────────────── */
.process-section {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: process-step;
}

.process-item {
  position: relative;
  padding: 32px 0 32px 72px;
  border-bottom: 1px solid var(--line);
  counter-increment: process-step;
}

.process-item:last-child {
  border-bottom: none;
}

.process-item::before {
  content: counter(process-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 32px;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  opacity: 0.25;
}

.process-item-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 8px;
}

.process-item-desc {
  color: var(--t2);
  font-size: 13px;
  line-height: 1.7;
  max-width: 600px;
}

/* ── Division CTA ───────────────────────────────────── */
.division-cta {
  position: relative;
  border-top: 1px solid var(--line);
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
  background: var(--surface);
}

.division-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.division-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--t1);
}

.division-cta-headline em {
  color: var(--brand);
  font-style: normal;
}

.division-cta-desc {
  color: var(--t2);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  max-width: 480px;
}

.division-cta-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 18px 36px;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.division-cta-btn:hover {
  background: var(--t1);
  transform: translateX(4px);
}

/* ── Other Divisions Strip ──────────────────────────── */
.other-divisions {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0;
}

.other-divisions-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.other-divisions-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 20px;
  text-align: center;
}

.other-divisions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.other-division-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t2);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 24px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.other-division-link:hover {
  color: var(--brand);
  border-color: var(--brand-dim);
  background: var(--brand-glow);
}

.other-division-link.current {
  color: var(--brand);
  border-color: var(--brand-dim);
  background: var(--brand-glow);
  pointer-events: none;
}

/* ── Footer Brand Override ──────────────────────────── */
.suite-page .footer-social:hover {
  color: var(--brand);
  border-color: var(--brand-dim);
  background: var(--brand-glow);
}

.suite-page .footer-link-accent {
  color: var(--brand) !important;
}

.suite-page .footer-link-accent:hover {
  color: var(--brand-dim) !important;
}

.suite-page .footer-col-title {
  color: var(--brand-dim);
}

.suite-page .footer-watermark {
  color: var(--brand);
}

/* ── Responsive ─────────────────────────────────────── */

/* 481px+ */
@media (min-width: 481px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 769px+ */
@media (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 48px;
  }

  .division-hero {
    min-height: 65vh;
  }
}

/* 1025px+ */
@media (min-width: 1025px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .division-hero-accent {
    display: block;
  }

  .division-hero {
    min-height: 70vh;
    padding: 160px 0 100px;
  }
}

/* Mobile overrides */
@media (max-width: 480px) {
  .division-hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .division-hero-accent {
    display: none;
  }

  .division-hero-name {
    font-size: 40px;
  }

  .division-hero-tagline {
    font-size: 15px;
  }

  .process-item {
    padding-left: 56px;
  }
}
