/* ==========================================================
   strategy.css — Pick Eric's Brain / Business Strategy Session
   ========================================================== */

/* ── Hero ── */
.strategy-hero {
  padding: 3.5rem 0;
  background: var(--color-grey-light);
  border-bottom: 1px solid var(--color-grey-mid);
}

.strategy-hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 820px) {
  .strategy-hero-inner { grid-template-columns: 1fr; }
  .strategy-hero-image { max-width: 320px; margin: 1.5rem auto 0; }
}

.strategy-kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-hero-blue);
  margin: 0 0 0.5rem;
}

.strategy-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.strategy-subheading {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.55;
  margin: 0 0 1.25rem;
}

.strategy-hero-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-grey-text);
  line-height: 1.75;
  margin: 0 0 0.9rem;
}

.strategy-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

/* ── Narrow-screen overflow fix ──
   The global .btn rule sets white-space: nowrap. Combined with a grid item's
   default min-width: auto, the long booking label forced the hero track wider
   than the viewport. Both rules below are scoped to this page — strategy.css
   is not loaded by any other page, so global .btn styling is untouched. */
.strategy-hero-text,
.strategy-hero-image {
  min-width: 0;
}

@media (max-width: 600px) {
  .strategy-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .strategy-hero-buttons .btn {
    width: 100%;
    white-space: normal;   /* let the wording wrap instead of overflowing */
    justify-content: center;
    text-align: center;
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
  padding: 0.65em 1.4em;
}
.btn-outline:hover { background: var(--color-navy); color: #fff; }

.strategy-finance-note {
  font-size: 0.85rem !important;
  color: var(--color-grey-text) !important;
}

/* ── Image placeholder in hero ── */
.image-placeholder--portrait {
  aspect-ratio: 3 / 4;
  max-width: 340px;
  margin-left: auto;
}

/* ── Hero photograph ── */
.strategy-hero-photo {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  margin-left: auto;
}

@media (max-width: 820px) {
  /* stays below the text block — do not reorder */
  .strategy-hero-photo { margin-left: auto; margin-right: auto; }
}

/* ── Sections ── */
.strategy-section { padding: 3.5rem 0; }
.strategy-section--alt { background: var(--color-grey-light); border-top: 1px solid var(--color-grey-mid); border-bottom: 1px solid var(--color-grey-mid); }
.strategy-narrow { max-width: 800px; }

.strategy-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 0.75rem;
}

.strategy-section-lead {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--color-grey-text);
  margin: 0 0 2rem;
}

.strategy-section p,
.strategy-ethics p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-grey-text);
  margin: 0 0 0.9rem;
}

.strategy-subsection-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 2rem 0 0.75rem;
}

.strategy-list {
  font-family: var(--font-body);
  color: var(--color-grey-text);
  line-height: 1.7;
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

.strategy-list--columns {
  columns: 2;
  column-gap: 2.5rem;
}
@media (max-width: 560px) { .strategy-list--columns { columns: 1; } }

/* ── Service cards ── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 820px) { .service-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .service-cards { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--color-grey-mid);
  border-radius: 12px;
  padding: 1.5rem;
}

.service-card-icon { font-size: 1.75rem; margin-bottom: 0.6rem; }

.service-card-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-grey-text);
  line-height: 1.6;
  margin: 0;
}

.strategy-disclaimer {
  font-size: 0.85rem !important;
  border-left: 3px solid var(--color-grey-mid);
  padding-left: 1rem;
}

/* ── Highlighted quote ── */
.strategy-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-navy);
  border-left: 4px solid var(--color-hero-blue);
  background: #fff;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
  line-height: 1.5;
}

.strategy-readmore { margin-top: 1.5rem; }
.strategy-readmore-link {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-hero-blue);
  text-decoration: none;
}
.strategy-readmore-link:hover { text-decoration: underline; }

/* ── Ethics band ── */
.strategy-ethics {
  background: var(--color-navy);
  padding: 3.5rem 0;
}

.strategy-ethics-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
}

.strategy-ethics p { color: rgba(255,255,255,0.85) !important; }

.strategy-ethics-list {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.9);
  line-height: 1.9;
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  background: #fff;
  border: 1px solid var(--color-grey-mid);
  border-radius: 12px;
  padding: 1.5rem;
}

.process-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-hero-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.process-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}

.process-step p {
  font-size: 0.88rem !important;
  margin: 0 !important;
}

/* ── Pricing card ── */
.pricing-card {
  max-width: 520px;
  margin: 2rem auto 0;
  background: #fff;
  border: 2px solid var(--color-hero-blue);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-hero-blue);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pricing-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-grey-text);
  margin: 0 0 1.5rem;
}

.pricing-includes-label {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 0.6rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  font-family: var(--font-body);
  color: var(--color-grey-text);
  line-height: 1.9;
  font-size: 0.95rem;
}

.pricing-list li::before { content: "✓ "; color: var(--color-green); font-weight: 700; }

.pricing-followup {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-navy);
  margin: 1.5rem 0 0.75rem;
}

.pricing-smallprint {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-grey-text);
  margin: 0;
  line-height: 1.6;
}

/* ── Fit columns ── */
.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 720px) { .fit-columns { grid-template-columns: 1fr; } }

.fit-card {
  border-radius: 12px;
  padding: 1.75rem;
}

.fit-card--yes { background: #f0fdf4; border: 1.5px solid #86efac; }
.fit-card--no  { background: #fff7ed; border: 1.5px solid #fdba74; }

.fit-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 1rem;
}

.fit-list {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-grey-text);
  line-height: 1.75;
  padding-left: 1.15rem;
  margin: 0;
}

/* ── Finance first ── */
.strategy-finance-first {
  padding: 3.5rem 0;
  background: var(--color-grey-light);
  border-top: 1px solid var(--color-grey-mid);
  border-bottom: 1px solid var(--color-grey-mid);
}

.strategy-finance-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn-finance-primary { font-size: 1.1rem; }

/* ── Narrow-screen overflow fix (finance buttons) ──
   "Request a Free Finance Quote" inherits white-space: nowrap from the global
   .btn rule and cleared 320px by only ~2px. Scoped to this container so the
   global .btn styling used by the rest of the site is untouched. */
@media (max-width: 600px) {
  .strategy-finance-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .strategy-finance-buttons .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;   /* let the wording wrap instead of overflowing */
    justify-content: center;
    text-align: center;
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}

/* ── Final CTA ── */
.strategy-final-cta {
  padding: 4rem 0;
}

.strategy-final-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 1rem;
}

.strategy-final-cta p {
  font-family: var(--font-body);
  color: var(--color-grey-text);
  line-height: 1.7;
  margin: 0 0 0.9rem;
}

.strategy-final-cta .btn { margin-top: 1rem; }

.strategy-smallprint {
  font-size: 0.8rem !important;
  margin-top: 1.25rem !important;
}
