/* ============================================
   BESPOKE SPIRE — Services Page Styles
   ============================================ */

/* ── Page Hero (reused from about.css) ─────── */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.75) 0%,
    rgba(10,8,5,0.35) 50%,
    rgba(10,8,5,0.18) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6%;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 14px 0 10px;
}

.page-hero-title em { font-style: italic; color: var(--gold-light); }

.page-hero-sub {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.page-hero-scroll {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.page-hero-scroll .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ── Services Nav Bar ───────────────────────── */
.services-nav-bar {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.services-nav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-nav-inner::-webkit-scrollbar { display: none; }

.snav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.snav-item:hover,
.snav-item.active {
  border-bottom-color: var(--gold);
}

.snav-num {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 400;
}

.snav-name {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.3s ease;
}

.snav-item:hover .snav-name,
.snav-item.active .snav-name { color: var(--ink); }

/* ── Services Intro ─────────────────────────── */
.services-intro {
  padding: 80px 0;
  border-bottom: 1px solid var(--cream-deep);
}

.services-intro-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intro-stat {
  padding: 32px 40px;
  border-bottom: 1px solid var(--cream-deep);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intro-stat:first-child { border-top: 1px solid var(--cream-deep); }

.intro-stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.intro-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ── Service Blocks ─────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }

.service-block-image {
  position: relative;
  overflow: hidden;
}

.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-block:hover .service-block-image img {
  transform: scale(1.04);
}

.service-block-num {
  position: absolute;
  bottom: 28px;
  left: 32px;
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-block-content {
  background: var(--cream);
  display: flex;
  align-items: center;
}

.service-block-content--dark {
  background: var(--ink);
}

.service-block-inner {
  padding: 72px 64px;
  width: 100%;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.service-features li {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--cream-deep);
  align-items: flex-start;
}

.service-features--light li {
  border-bottom-color: rgba(255,255,255,0.07);
}

.service-features li:first-child { border-top: 1px solid var(--cream-deep); }
.service-features--light li:first-child { border-top-color: rgba(255,255,255,0.07); }

.feat-icon {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.service-features li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.service-features--light li strong { color: var(--white); }

.service-features li p {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.8;
}

.service-features--light li p { color: rgba(255,255,255,0.5); }

/* ── Process Strip ──────────────────────────── */
.process-strip {
  padding: 100px 0;
  background: var(--cream-dark);
}

.process-strip-header {
  text-align: center;
  margin-bottom: 72px;
}

.process-strip-header .divider { margin-inline: auto; }

.process-strip-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

.ps-step {
  padding: 0 36px 0 0;
  position: relative;
}

.ps-step-line {
  position: absolute;
  top: 14px;
  left: 26px;
  right: -10px;
  height: 1px;
  background: var(--cream-deep);
  z-index: 0;
}

.ps-step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream-dark);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-step-dot::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.ps-step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.ps-step h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.ps-step p {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.85;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1100px) {
  .service-block-inner { padding: 56px 44px; }
}

@media (max-width: 900px) {
  .service-block,
  .service-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-block-image { min-height: 380px; }
  .service-block-inner { padding: 52px 32px; }

  .services-intro-inner { grid-template-columns: 1fr; gap: 48px; }

  .process-strip-steps {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .ps-step-line { display: none; }
}

@media (max-width: 600px) {
  .process-strip-steps { grid-template-columns: 1fr; }
  .service-block-inner { padding: 44px 24px; }
  .snav-item { padding: 16px 18px; }
}
