/* ═══════════════════════════════════════════
   services.css — Our Work page styles
═══════════════════════════════════════════ */

/* ── Hero ───────────────────────────────── */
.sv-hero {
  position: relative;
  padding: 160px clamp(24px, 5vw, 80px) 100px;
  overflow: hidden;
}
.sv-hero-inner {
  position: relative;
  z-index: 1;
}
.sv-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 20px 0 28px;
}
.sv-hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Story / Intro ──────────────────────── */
.sv-story {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--border);
}
.sv-story-inner {
  max-width: 720px;
  margin: 0 auto;
}
.sv-story-lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 28px;
}
.sv-story-inner p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.sv-story-example {
  margin: 40px 0;
  padding: 32px 36px;
  border-left: 3px solid var(--teal);
  background: rgba(13, 148, 136, 0.05);
  border-radius: 0 8px 8px 0;
}
.sv-story-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.sv-story-close {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  color: var(--text) !important;
  margin-top: 32px !important;
}

/* ── Process Timeline ───────────────────── */
.sv-process {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--border);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: clamp(48px, 6vw, 72px);
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.666% - 1px);
  right: calc(16.666% - 1px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--teal));
  opacity: 0.4;
  pointer-events: none;
}

.process-step {
  padding: 0 28px 40px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-num::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
  flex-shrink: 0;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before { display: none; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── Service Sections ───────────────────── */
.sv-service {
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid var(--border);
}
.sv-service-alt {
  background: var(--surface);
}

.sv-service-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 60px;
  align-items: start;
}

.sv-service-label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  position: sticky;
  top: 140px;
}

.sv-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--teal);
  opacity: 0.25;
}

.sv-service-title {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sv-service-intro {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  opacity: 0.85;
}

.sv-service-body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* What's included */
.sv-includes {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
.sv-includes h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.sv-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sv-includes li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.sv-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

/* Note box (device support) */
.sv-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 28px;
}
.sv-note span {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.sv-note p {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .sv-service-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sv-service-label {
    position: static;
    flex-direction: row;
    align-items: center;
  }
  .sv-num { font-size: 32px; opacity: 0.3; }
}

/* ── Bottom CTA ─────────────────────────── */
.sv-bottom-cta {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--border);
}

/* ── Active nav link ─────────────────────── */
.nav-active {
  color: var(--amber) !important;
}

/* ── Footer back link ───────────────────── */
.footer-back {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-back:hover { color: var(--teal-light); }
