/* ============================================================
   MOVEMENT MAKERS — PAGES CSS
   Styles for service pages, blog, competitor comparisons, about
   ============================================================ */

/* Page Hero */
.page-hero {
  padding: 160px 64px 80px;
  background: var(--navy);
  text-align: center;
  overflow-x: hidden;
  max-width: 100%;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-hero-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}
.page-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.page-hero-date {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  margin-top: 16px;
  letter-spacing: .05em;
}
.page-hero-blog .page-hero-title {
  font-size: clamp(28px, 3.5vw, 46px);
}

/* Page Content */
.page-content {
  padding: 80px 64px;
  background: var(--white);
}
.page-content-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.page-content-narrow {
  max-width: 720px;
}
.page-content-blog {
  padding-top: 60px;
}

/* Page Sections */
.page-section {
  margin-bottom: 64px;
}
.page-section:last-child {
  margin-bottom: 0;
}
.page-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.page-section p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.page-section p:last-child {
  margin-bottom: 0;
}
.page-section a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.page-section a:hover {
  color: var(--gold);
}

/* Page Services Grid */
.page-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.page-svc {
  padding: 32px;
  background: var(--bg-light);
  border: 1px solid var(--border);
}
.page-svc h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.page-svc p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
}

/* Comparison Table */
.comparison-table {
  margin-top: 32px;
  border: 1px solid var(--border);
  overflow-x: auto;
}
.comp-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child {
  border-bottom: none;
}
.comp-header {
  background: var(--navy);
}
.comp-header .comp-cell {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}
.comp-cell {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
  font-weight: 300;
  border-right: 1px solid var(--border);
}
.comp-cell:last-child {
  border-right: none;
}
.comp-label {
  font-weight: 500;
  color: var(--navy);
  background: var(--bg-light);
  font-size: 12px;
  letter-spacing: .03em;
}

/* Page CTA */
.page-cta {
  padding: 80px 64px;
  background: var(--navy);
  text-align: center;
  overflow-x: hidden;
}
.page-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.page-cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-cta-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Services Landing Grid */
.services-landing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.svc-landing-card {
  display: block;
  padding: 40px 32px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background .25s, border-color .25s;
}
.svc-landing-card:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.svc-landing-num {
  font-family: "Playfair Display", serif;
  font-size: 11px;
  color: var(--border);
  margin-bottom: 20px;
  transition: color .25s;
}
.svc-landing-card:hover .svc-landing-num {
  color: rgba(255,255,255,.15);
}
.svc-landing-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color .25s;
}
.svc-landing-card:hover .svc-landing-name {
  color: var(--white);
}
.svc-landing-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
  transition: color .25s;
}
.svc-landing-card:hover .svc-landing-desc {
  color: rgba(255,255,255,.5);
}
.svc-landing-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .25s;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.blog-card {
  display: block;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: padding-left .2s;
}
.blog-card:first-child {
  padding-top: 0;
}
.blog-card:hover {
  padding-left: 16px;
}
.blog-card-date {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 500;
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 12px;
}
.blog-card-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Blog Body */
.blog-body h2 {
  margin-top: 40px;
}
.blog-body p + h2 {
  margin-top: 48px;
}

/* Team Detail (About page) */
.team-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.team-detail:first-child {
  padding-top: 0;
}
.team-detail:last-child {
  border-bottom: none;
}
.team-detail-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.team-detail-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-detail-role {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.team-detail-info p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 14px;
}
.team-detail-info p:last-child {
  margin-bottom: 0;
}
.team-detail-info a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.team-detail-info a:hover {
  color: var(--gold);
}

/* Nav active state */
.nav-active {
  color: var(--gold) !important;
}

/* Responsive */
@media (max-width: 960px) {
  .page-hero {
    padding: 140px 24px 60px;
  }
  .page-content, .page-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
  .page-services-grid {
    grid-template-columns: 1fr;
  }
  .services-landing-grid {
    grid-template-columns: 1fr;
  }
  .comp-row {
    grid-template-columns: 100px 1fr 1fr;
  }
  .comp-cell {
    padding: 12px;
    font-size: 12px;
  }
  .team-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .team-detail-photo img {
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .comp-row {
    grid-template-columns: 1fr;
  }
  .comp-header {
    display: none;
  }
  .comp-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
  }
  .comp-label {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
}
