/* ==========================================================================
   LumeMinds Plus — Service Page Stylesheet
   Shared across all pages in /services/. Matches index.html design system.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #f8f8f7;
  --silver-light: #f0f0ee;

  --blue: #1a3a6b;
  --blue-deep: #122a52;
  --blue-mid: #1e4280;
  --blue-light: #e8edf5;
  --blue-pale: #f2f5fa;

  --red: #c0252a;
  --red-soft: #d93d42;

  --gold: #b8952a;
  --gold-light: #d4b24e;
  --gold-pale: #f5edda;

  --ink: #0e1c35;
  --ink-soft: #2a3f62;
  --ink-muted: #5a6a82;

  --silver: #c0c8d4;
  --rule: rgba(26,58,107,0.12);

  --pad-x: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  height: 92px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-logo img { height: 62px; width: auto; display: block; }

.nav-links { display: flex; gap: 48px; list-style: none; }

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }
.nav-links a.current { color: var(--blue); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 12px 28px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--blue-mid); }

/* --------------------------------------------------------------------------
   SERVICE HERO
   -------------------------------------------------------------------------- */
.svc-hero {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 200px var(--pad-x) 92px;
  position: relative;
  overflow: hidden;
  background: var(--blue-deep);
}

.svc-hero-accent-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--blue) 60%, var(--red) 100%);
  z-index: 3;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9,18,38,0.95) 0%, rgba(10,22,45,0.86) 42%, rgba(12,28,54,0.60) 70%, rgba(14,32,60,0.36) 100%);
  z-index: 1;
}

.svc-hero > *:not(.svc-hero-bg):not(.svc-hero-overlay):not(.svc-hero-accent-bar) {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 30px;
  animation: fadeUp 0.8s ease both;
}

.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

.svc-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.9s ease both;
}

.svc-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold-light);
}

.svc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  max-width: 760px;
  animation: fadeUp 1s 0.1s ease both;
}

.svc-hero h1 em { font-style: italic; color: var(--gold-light); }

.svc-hero-lede {
  margin-top: 34px;
  max-width: 620px;
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  animation: fadeUp 1s 0.2s ease both;
}

.svc-hero-actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.3s ease both;
}

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}

.btn-primary:hover { background: var(--blue-mid); }

.btn-primary.on-dark { background: var(--red); }
.btn-primary.on-dark:hover { background: #8f1d21; }

.btn-secondary {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* --------------------------------------------------------------------------
   SHARED SECTION FURNITURE
   -------------------------------------------------------------------------- */
.section-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--red);
}

.section-label.on-dark { color: var(--gold-light); }
.section-label.on-dark::before { background: var(--gold-light); }

.rule-gold { width: 48px; height: 3px; background: var(--gold); margin: 36px 0; }

h2.svc-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--blue);
}

h2.svc-h2 em { font-style: italic; }
h2.svc-h2.on-dark { color: var(--white); }

/* --------------------------------------------------------------------------
   THE CHALLENGE
   -------------------------------------------------------------------------- */
.challenge {
  padding: 130px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: start;
  background: var(--white);
}

.challenge-right p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

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

.signal-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--silver);
  margin-top: 20px;
}

.signal-item {
  background: var(--blue-pale);
  padding: 40px 34px;
  border-top: 3px solid var(--blue);
}

.signal-item-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 16px;
}

.signal-item p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   OUR APPROACH (phases)
   -------------------------------------------------------------------------- */
.approach {
  padding: 130px var(--pad-x);
  background: var(--off-white);
}

.approach-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 72px;
}

.approach-header > div { flex: 0 0 520px; }

.approach-header p {
  max-width: 380px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.85;
}

.phase {
  display: grid;
  grid-template-columns: 96px 1fr 1.15fr;
  gap: 48px;
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid var(--rule);
}

.phase:last-child { border-bottom: 1px solid var(--rule); }

.phase-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}

.phase h3 {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.25;
}

.phase-duration {
  display: block;
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 400;
}

.phase p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.9;
}

/* --------------------------------------------------------------------------
   WHAT'S INCLUDED (dark grid)
   -------------------------------------------------------------------------- */
.included {
  padding: 130px var(--pad-x);
  background: var(--blue);
}

.included-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 72px;
}

.included-header > div { flex: 0 0 520px; }

.included-header p {
  max-width: 340px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
}

.included-card {
  background: var(--blue-deep);
  padding: 48px 40px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.included-card:hover { background: var(--blue-mid); border-top-color: var(--gold); }

.included-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.included-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   DELIVERABLES + WHO IT'S FOR (two-up)
   -------------------------------------------------------------------------- */
.outcomes {
  padding: 130px var(--pad-x);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 110px;
  align-items: start;
  background: var(--white);
}

.deliverables-list { list-style: none; margin-top: 12px; }

.deliverables-list li {
  position: relative;
  padding: 20px 0 20px 36px;
  border-bottom: 1px solid var(--rule);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.deliverables-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 30px;
  width: 18px; height: 2px;
  background: var(--gold);
}

.deliverables-list li strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--blue);
  margin-bottom: 5px;
}

.audience-panel {
  background: var(--blue-pale);
  border-top: 3px solid var(--blue);
  padding: 48px 44px;
}

.audience-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 24px;
  line-height: 1.25;
}

.audience-list { list-style: none; }

.audience-list li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  padding: 12px 0 12px 24px;
  position: relative;
  border-bottom: 1px solid rgba(26,58,107,0.10);
}

.audience-list li:last-child { border-bottom: none; }

.audience-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 21px;
  width: 6px; height: 6px;
  background: var(--red);
}

.audience-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(26,58,107,0.14);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { padding: 130px var(--pad-x); background: var(--off-white); }

.faq-header { margin-bottom: 56px; max-width: 560px; }

.faq-list { border-top: 1px solid var(--rule); }

.faq-item { border-bottom: 1px solid var(--rule); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--blue-mid); }

.faq-toggle {
  flex: 0 0 auto;
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-a { max-height: 600px; opacity: 1; }

.faq-a p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.9;
  padding: 0 60px 30px 0;
}

/* --------------------------------------------------------------------------
   RELATED SERVICES
   -------------------------------------------------------------------------- */
.related { padding: 130px var(--pad-x); background: var(--white); }

.related-header { margin-bottom: 52px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--silver);
}

.related-card {
  background: var(--off-white);
  padding: 42px 36px;
  text-decoration: none;
  display: block;
  border-top: 3px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.related-card:hover { background: var(--blue-pale); border-top-color: var(--gold); }

.related-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 20px;
}

.related-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 12px;
}

.related-card p { font-size: 13px; color: var(--ink-muted); line-height: 1.75; }

.related-card .arrow {
  display: inline-block;
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* --------------------------------------------------------------------------
   CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  padding: 120px var(--pad-x);
  background: var(--blue-deep);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 90px;
  align-items: center;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
}

.cta-band h2 em { font-style: italic; color: var(--gold-light); }

.cta-band p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 34px;
}

.cta-actions { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer { padding: 96px var(--pad-x) 0; background: var(--blue-deep); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-logo {
  display: inline-flex;
  background: var(--white);
  padding: 10px 16px;
  margin-bottom: 22px;
}

.footer-brand-logo img { height: 34px; width: auto; display: block; }

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-contact-item { margin-bottom: 18px; }
.footer-contact-item:last-of-type { margin-bottom: 0; }

.footer-contact-label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 5px;
}

.footer-contact-value { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.footer-contact-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-contact-value a:hover { color: var(--gold-light); }

.footer-cta-btn {
  margin-top: 22px;
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 26px;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-cta-btn:hover { background: #8f1d21; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.footer-bottom-links { display: flex; gap: 28px; list-style: none; }

.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   ANIMATION
   -------------------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .svc-hero * { animation: none !important; }
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  :root { --pad-x: 44px; }
  .nav-links { gap: 30px; }
  .challenge, .outcomes { gap: 64px; }
  .approach-header, .included-header { gap: 48px; }
  .approach-header > div, .included-header > div { flex: 1 1 auto; }
  .signal-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  body > nav { height: auto; flex-wrap: wrap; padding: 14px var(--pad-x); gap: 12px; }
  .nav-logo img { height: 46px; }
  .nav-links { order: 3; width: 100%; gap: 22px; flex-wrap: wrap; justify-content: flex-start; padding-bottom: 6px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.12em; }
  .nav-cta { padding: 10px 18px; font-size: 10px; }

  .svc-hero { padding-top: 230px; }

  .challenge, .outcomes, .cta-band { grid-template-columns: 1fr; gap: 48px; }
  .approach-header, .included-header { flex-direction: column; align-items: flex-start; gap: 28px; }
  .approach-header p, .included-header p { max-width: 100%; }
  .included-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .phase { grid-template-columns: 64px 1fr; gap: 24px; }
  .phase p { grid-column: 2 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 640px) {
  :root { --pad-x: 24px; }
  .svc-hero { padding-top: 250px; padding-bottom: 64px; min-height: 0; }
  .svc-hero-actions { gap: 22px; }
  .btn-primary { padding: 16px 32px; }
  .challenge, .approach, .included, .outcomes, .faq, .related { padding-top: 84px; padding-bottom: 84px; }
  .cta-band { padding-top: 84px; padding-bottom: 84px; }
  .signal-list, .included-grid, .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .faq-a p { padding-right: 0; }
  .faq-q { font-size: 17px; }
}
