/* ============================================================
   Services archive grid (.arc-title / .arc-filters live in layout.css)
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Single service page
   ============================================================ */

/* Page hero (green) */
.pg-hero {
  position: relative;
  background: var(--lgm-green);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
}
.pg-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 680px;
}
.pg-hero .lgm-breadcrumb { justify-content: center; color: rgba(255,255,255,0.88); }
.pg-hero__eb {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--lgm-gold);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pg-hero__eb-dash { display: block; width: 28px; height: 1.5px; background: var(--lgm-gold); opacity: 0.7; }
.pg-hero__h1 { color: #fff; font-size: 68px; font-weight: 700; letter-spacing: -1.5px; line-height: 1; margin: 0; }
.pg-hero__sub { color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.65; max-width: 500px; }
/* .pg-hero__cta is defined once in components.css (loaded globally). */

/* NTI intro split */
.nti-intro {
  display: grid;
  grid-template-columns: 48% 1fr;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}
.nti-intro__photo { position: relative; background-size: cover; background-position: center top; }
.nti-intro__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--lgm-bg) 100%);
  pointer-events: none;
}
.nti-intro__content {
  position: relative;
  padding: 72px 80px 72px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  overflow: hidden;
}
.nti-intro__deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 50px solid var(--lgm-gold);
  opacity: 0.055;
  pointer-events: none;
}
.nti-intro__h { color: var(--lgm-navy); font-size: 44px; font-weight: 700; line-height: 1.08; margin: 0; }
.nti-intro__body { color: var(--lgm-navy); font-size: 14px; line-height: 1.7; max-width: 460px; margin: 0; }
.nti-intro__steps {
  display: flex;
  flex-direction: column;
  border-top: 0.2px solid var(--lgm-line);
  margin-top: 6px;
}
.nti-intro__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 0.2px solid var(--lgm-line);
}
.nti-intro__step-n {
  font-size: 32px;
  font-weight: 700;
  color: var(--lgm-gold);
  opacity: 0.35;
  line-height: 1;
  min-width: 48px;
  letter-spacing: -1px;
  flex-shrink: 0;
  padding-top: 1px;
}
.nti-intro__step-body { display: flex; flex-direction: column; gap: 3px; }
.nti-intro__step-t { font-size: 15px; font-weight: 700; color: var(--lgm-green); line-height: 1.2; }
.nti-intro__step-d { font-size: 13px; color: var(--lgm-fg-muted); line-height: 1.55; }
.nti-intro__cta {
  align-self: flex-start;
  background: var(--lgm-green);
  color: #fff;
  border-radius: var(--lgm-radius-pill);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s;
  margin-top: 4px;
}
.nti-intro__cta:hover { background: #0A4A2E; color: #fff; }

/* FAQ accordion */
.faq-wrap { padding: 70px 0 60px; background: #fff; }
.faq { display: flex; flex-direction: column; border-top: 1px solid var(--lgm-line); margin-top: 8px; }
.faq__item { border-bottom: 1px solid var(--lgm-line); overflow: hidden; }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--lgm-green);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 0.15s;
}
.faq__q:hover { color: #0A4A2E; }
.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--lgm-green);
  -webkit-mask-image: url("../../images/icon-chevron-down.svg");
          mask-image: url("../../images/icon-chevron-down.svg");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 4px;
}
.faq__item.is-open .faq__a { max-height: 600px; padding-bottom: 20px; }
.faq__a p { font-size: 14px; color: var(--lgm-fg-muted); line-height: 1.7; margin: 0; }

/* FAQ --c numbered variant */
.faq-wrap--c .faq { counter-reset: faq-q; }
.faq-wrap--c .faq__item { counter-increment: faq-q; }
.faq-wrap--c .faq__q { font-size: 17px; padding: 22px 4px; gap: 20px; }
.faq-wrap--c .faq__q::before {
  content: "Q" counter(faq-q);
  flex-shrink: 0;
  font-size: 26px;
  font-weight: 800;
  color: var(--lgm-gold);
  opacity: 0.3;
  min-width: 42px;
  line-height: 1;
}
.faq-wrap--c .faq__item.is-open .faq__q::before { opacity: 0.85; }
.faq-wrap--c .faq__item.is-open .faq__q { color: var(--lgm-navy); }

@media (max-width: 900px) {
  .nti-intro { grid-template-columns: 1fr; min-height: auto; }
  .nti-intro__photo { height: 260px; }
  .nti-intro__content { padding: 36px 24px; }
}
@media (max-width: 768px) {
  .pg-hero--c, .pg-hero { min-height: 360px; padding: 60px 20px 70px; }
  .pg-hero__h1 { font-size: 40px; letter-spacing: -0.5px; }
  .nti-intro__h { font-size: 28px; }
}
