/* =============================================
   ADVISORY PAGE — Specific Styles
   ============================================= */

/* Active nav link */
.nav-active { color: var(--earth) !important; font-weight: 600; }

/* Page hero */
.page-hero {
  background: var(--cream);
  padding: 80px 32px 56px;
  border-bottom: 1px solid rgba(232,130,58,0.12);
}
.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 600px;
}

/* Approach section (shared delivery model) */
.approach-section {
  padding: 56px 32px 64px;
  background: var(--sand);
}
.approach-intro {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 40px;
}
.approach-diagram-wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
.approach-diagram-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}
.approach-note {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--slate);
  margin-top: 28px;
  text-align: center;
}

/* Track sections */
.track-section {
  padding: 56px 32px;
  background: var(--cream);
}
.track-header {
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(232,130,58,0.15);
}
.track-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 8px;
}
.track-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

/* Problem block */
.problem-block {
  margin-bottom: 40px;
  max-width: 800px;
}
.problem-heading {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 16px;
}
.problem-statement {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 20px;
}
.problem-body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 14px;
}
.problem-body strong {
  color: var(--earth);
  font-weight: 600;
}

/* Who block */
.who-block {
  background: var(--sand);
  border-left: 3px solid var(--earth);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 40px;
  max-width: 800px;
}
.who-heading {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 12px;
}
.who-body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.85;
}

/* Before / After */
.before-after { margin-bottom: 24px; }
.ba-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 8px;
  overflow: hidden;
}
.ba-col {
  padding: 32px 28px;
}
.ba-before {
  background: rgba(42,26,16,0.04);
}
.ba-after {
  background: rgba(232,130,58,0.08);
}
.ba-col-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ba-before .ba-col-label { color: var(--slate); }
.ba-after .ba-col-label { color: var(--earth); }
.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ba-list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.ba-before .ba-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--slate);
  font-size: 14px;
}
.ba-after .ba-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--earth);
  font-size: 14px;
}

/* Track record */
.track-record {
  background: var(--ink);
  padding: 72px 32px;
}
.track-record .section-label { color: var(--earth); }
.track-record .section-heading { color: var(--sand); }
.record-intro {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: rgba(242,232,217,0.72);
  line-height: 1.7;
  max-width: 640px;
  margin-top: 16px;
}
.record-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 36px;
}
.record-card {
  background: rgba(255,240,232,0.04);
  padding: 32px 28px;
  border: 1px solid rgba(232,130,58,0.1);
  border-radius: 6px;
  transition: background 0.2s ease;
}
.record-card:hover { background: rgba(255,240,232,0.07); }
.record-company {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 4px;
}
.record-role {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
}
.record-results {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.record-results li {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(242,232,217,0.7);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.record-results li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--earth);
}
.record-results li strong {
  color: var(--sand);
  font-weight: 600;
}

/* Why Me */
.why-me {
  background: var(--sand);
  padding: 72px 32px;
}
.why-me-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-me-body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 20px;
}
.why-me-aside {
  padding-top: 12px;
}
.credential-block {
  padding: 22px 0;
}
.credential-num {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 4px;
}
.credential-label {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.5;
}
.credential-divider {
  height: 1px;
  background: rgba(232,130,58,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .page-hero { padding: 40px 20px 48px; }
  .approach-section { padding: 8px 20px 48px; }
  .approach-diagram-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .approach-diagram-wrap svg { width: 900px; max-width: none; }
  .track-section { padding: 48px 20px; }
  .track-record { padding: 48px 20px; }
  .why-me { padding: 48px 20px; }
  .ba-grid { grid-template-columns: 1fr; gap: 16px; }
  .record-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-me-inner { grid-template-columns: 1fr; gap: 40px; }
}
