/* ─── Advisory Page ───────────────────────────────────────────────────────── */

/* Hero */
.advisory-hero,
.pa-hero {
  background: transparent;
  padding: 80px var(--gutter) 100px;
  position: relative;
  z-index: 0;
}

.advisory-hero::after,
.pa-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-deep) 0%, var(--forest-deep) 40%, var(--ember) 100%);
}

.advisory-hero__content,
.pa-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.advisory-hero .eyebrow,
.pa-hero .eyebrow {
  color: rgba(255,255,255,0.80);
}

.advisory-hero h1,
.pa-hero h1 {
  color: var(--white);
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
  margin-top: 16px;
  margin-bottom: 28px;
}

.advisory-hero__sub,
.pa-hero__sub {
  font-family: var(--poppins);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

/* Who section */
.who__body {
  max-width: 640px;
}

.who__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 24px;
}

.who__body p:last-child {
  margin-bottom: 0;
}

/* Intelligence overview */
.intelligence-overview {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.intelligence-overview__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.intelligence-overview__body {
  max-width: 460px;
}

.intelligence-overview__body p {
  color: var(--stone);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.intelligence-overview__body p:last-child {
  margin-bottom: 0;
}

.intelligence-overview__image {
  min-height: 300px;
  background: var(--mist);
  overflow: hidden;
}

.intelligence-overview__image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

/* Service tiers intro */
.tiers__intro {
  max-width: 600px;
  margin-bottom: 56px;
}

.tiers__intro h2 {
  margin-top: 16px;
  margin-bottom: 20px;
}

.tiers__intro p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
}

/* Service tier cards */
.tier-card {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 2px;
  padding: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
  border-left: 4px solid var(--mist);
  transition: box-shadow var(--duration) var(--ease);
}

.tier-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

.tier-card--1 { border-left-color: var(--ocean-slate); }
.tier-card--2 { border-left-color: var(--ocean-slate); }
.tier-card--3 { border-left-color: var(--ocean-slate); }

.tier-card__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.tier-card__num {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ocean-slate);
}

.tier-card__name {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  color: var(--forest-deep);
  letter-spacing: 0.04em;
}

.tier-card__question-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.tier-card__question {
  font-family: var(--fahkwang);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--forest-deep);
  line-height: 1.3;
  margin-bottom: 20px;
}

.tier-card__desc {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 32px;
}

.tier-card__section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
  margin-top: 28px;
}

.tier-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.tier-card__list li {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.tier-card__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--ocean-slate);
}

.tier-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(110, 119, 119, 0.15);
  margin-top: 32px;
}

.tier-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tier-card__price {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--forest-deep);
  font-weight: 400;
}

.tier-card__turnaround {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--stone);
}

/* Execution section */
.execution__content {
  max-width: 600px;
}

.execution__content h2 {
  color: var(--forest-deep);
  margin: 16px 0 28px;
}

.execution__body p {
  color: var(--stone);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.execution__body p:last-child {
  margin-bottom: 36px;
}

/* Process section */
.process__headline {
  margin: 16px 0 48px;
  max-width: 480px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process__step-num {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 28px;
  color: var(--ocean-slate);
  margin-bottom: 16px;
  line-height: 1;
}

.process__step h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.process__step p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
}

/* Bottom CTA */
.advisory-cta {
  text-align: center;
}

.advisory-cta__headline {
  font-family: var(--fahkwang);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
  margin-bottom: 16px;
}

.advisory-cta__sub {
  font-family: var(--poppins);
  font-weight: 300;
  font-size: 16px;
  color: var(--sage);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.advisory-cta .cta-group {
  justify-content: center;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .intelligence-overview__layout {
    grid-template-columns: 1fr;
  }

  .intelligence-overview__image {
    min-height: 240px;
    order: -1;
  }

  .intelligence-overview__image img {
    min-height: 240px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tier-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .tier-card__footer .btn {
    width: auto;
  }
}
