/* === INTERNAL PAGES === */
.page-hero {
  padding: 200px 0 100px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 85% 10%, color-mix(in oklch, var(--accent) 8%, transparent), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero-title {
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin-top: 24px;
}
.page-hero-title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.page-hero-lead {
  max-width: 680px;
  font-size: 20px;
  color: var(--fg-dim);
  margin-top: 32px;
  line-height: 1.5;
}

/* Generic content block */
.content-block {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.content-block:last-child { border-bottom: none; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}
.two-col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
}
.two-col-body h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.two-col-body p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 68ch;
}
.two-col-body p + p { margin-top: 20px; }
.two-col-body strong { color: var(--fg); font-weight: 500; }

/* Values / principles list */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  border-top: 1px solid var(--line-2);
  padding-top: 24px;
}
.value-card .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.value-card p {
  color: var(--fg-dim);
  line-height: 1.5;
  font-size: 15px;
}

/* Service detail card */
.svc-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
  background: var(--bg-2);
  transition: border-color .2s;
}
.svc-detail:hover { border-color: var(--line-2); }
.svc-detail + .svc-detail { margin-top: 20px; }
.svc-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.svc-detail-n {
  font-family: 'Fraunces', serif;
  font-size: 80px;
  line-height: 0.8;
  color: var(--accent);
  font-variation-settings: 'SOFT' 50, 'WONK' 0;
}
.svc-detail-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.svc-detail-body > p {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.55;
  max-width: 70ch;
}
.svc-detail-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 700px) { .svc-detail-list { grid-template-columns: 1fr; } }
.svc-detail-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-dim);
  font-family: 'JetBrains Mono', monospace;
}
.svc-detail-list li::before {
  content: '+';
  color: var(--accent);
}

/* Placeholder notice */
.placeholder-notice {
  margin: 80px auto;
  max-width: 680px;
  text-align: center;
  padding: 60px 40px;
  border: 1px dashed var(--line-2);
  border-radius: 8px;
}
.placeholder-notice .badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: color-mix(in oklch, var(--accent) 15%, transparent);
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.placeholder-notice h2 {
  font-size: 36px;
  margin-bottom: 16px;
}
.placeholder-notice p {
  color: var(--fg-dim);
  line-height: 1.6;
}

/* CTA band */
.cta-band {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.cta-band h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  max-width: 20ch;
  margin: 0 auto 24px;
  letter-spacing: -0.03em;
}
.cta-band p {
  color: var(--fg-dim);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 40px;
}

/* Nav scroll state */
.nav.on-scroll {
  background: color-mix(in oklch, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-links a.current { color: var(--accent); }

/* Timeline (método) */
.timeline {
  margin-top: 80px;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: var(--line-2);
}
.timeline-step {
  position: relative;
  padding: 40px 0 60px;
  border-bottom: 1px solid var(--line);
}
.timeline-step:last-child { border-bottom: none; }
.timeline-step::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 52px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--line-2);
}
.timeline-step .n {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.timeline-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  line-height: 1.05;
  margin: 12px 0 20px;
  max-width: 20ch;
}
.timeline-step p {
  max-width: 72ch;
  color: var(--fg-dim);
  font-size: 17px;
  line-height: 1.6;
}
.timeline-bullets {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
}
@media (max-width: 700px) { .timeline-bullets { grid-template-columns: 1fr; } }
.timeline-bullets li {
  list-style: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--fg);
  display: flex;
  gap: 10px;
}
.timeline-bullets li::before { content: '+'; color: var(--accent); }
