/* ===== Services Page – Premium layout ===== */

/* Quick nav under hero */
.pageHero__quickNav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.pageHero__quickNav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(239,229,214,.8);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.pageHero__quickNav a:hover {
  color: #C8A46A;
  background: rgba(200,164,106,.1);
}

/* Trust snapshot – compact 2-column strip */
.servicesTrust {
  position: relative;
  padding: 48px 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), transparent 60%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.servicesTrust__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .servicesTrust__inner { grid-template-columns: 1fr; gap: 28px; }
}
.servicesTrust__title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 0 0 12px;
  color: #C8A46A;
  letter-spacing: 0.3px;
}
.servicesTrust__text {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: rgba(239,229,214,.88);
}
.servicesTrust__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .servicesTrust__badges { justify-content: flex-start; }
}
.servicesTrust__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(200,164,106,.25);
  background: rgba(200,164,106,.06);
  font-size: 13px;
  font-weight: 500;
  color: rgba(239,229,214,.9);
}
.servicesTrust__badge::before {
  content: "✓";
  color: #C8A46A;
  font-weight: 700;
}

/* ===== Service Offerings – expanded cards ===== */
.servicesOfferings {
  padding: 56px 0;
}
.servicesOfferings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .servicesOfferings__grid { grid-template-columns: 1fr; }
}
.servicesOffering {
  position: relative;
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(165deg, rgba(0,0,0,.25), rgba(200,164,106,.04));
  transition: border-color .25s, box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.servicesOffering:hover {
  border-color: rgba(200,164,106,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  transform: translateY(-4px);
}
.servicesOffering__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #C8A46A;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(200,164,106,.12);
}
.servicesOffering__title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 12px;
  color: #efe5d6;
  line-height: 1.3;
}
.servicesOffering__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(239,229,214,.85);
  margin: 0 0 16px;
  flex: 1;
}
.servicesOffering__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.servicesOffering__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(239,229,214,.82);
  margin-bottom: 6px;
}
.servicesOffering__list li::before {
  content: "—";
  color: #C8A46A;
  font-weight: 600;
  flex-shrink: 0;
}
.servicesOffering__bestFor {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(200,164,106,.9);
  margin-bottom: 8px;
  font-weight: 600;
}
.servicesOffering__bestFor span {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  opacity: .92;
}
.servicesOffering__cta {
  margin-top: auto;
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(200,164,106,.45);
  background: linear-gradient(180deg, rgba(200,164,106,.25), rgba(154,110,53,.12));
  color: #efe5d6;
  text-align: center;
  transition: filter .2s, box-shadow .2s;
}
.servicesOffering__cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 20px rgba(200,164,106,.2);
}

/* ===== Service-to-Action Mapping ===== */
.serviceAction {
  padding: 48px 0;
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.serviceAction__title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 32px);
  margin: 0 0 8px;
  color: #C8A46A;
  text-align: center;
}
.serviceAction__subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(239,229,214,.85);
}
.serviceAction__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .serviceAction__grid { grid-template-columns: 1fr; }
}
.serviceAction__card {
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  text-align: center;
  transition: border-color .25s, background .25s;
}
.serviceAction__card:hover {
  border-color: rgba(200,164,106,.25);
  background: rgba(200,164,106,.04);
}
.serviceAction__cardIcon {
  font-size: 32px;
  margin-bottom: 12px;
  color: #C8A46A;
}
.serviceAction__cardTitle {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #efe5d6;
}
.serviceAction__cardText {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(239,229,214,.8);
  margin: 0 0 16px;
}
.serviceAction__cardBtn {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(200,164,106,.4);
  background: rgba(200,164,106,.1);
  color: #efe5d6;
  transition: filter .2s;
}
.serviceAction__cardBtn:hover {
  filter: brightness(1.1);
}

/* ===== Consultation Format & Expectations ===== */
.consultFormat {
  padding: 56px 0;
}
.consultFormat__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .consultFormat__grid { grid-template-columns: 1fr; }
}
.consultFormat__col h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #C8A46A;
}
.consultFormat__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.consultFormat__col li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(239,229,214,.88);
}
.consultFormat__col li::before {
  content: "◆";
  color: #C8A46A;
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== FAQs Accordion ===== */
.faqSection {
  padding: 56px 0;
  background: rgba(0,0,0,.18);
}
.faqSection__header {
  text-align: center;
  margin-bottom: 36px;
}
.faqSection__title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 36px);
  margin: 0 0 12px;
  color: #C8A46A;
}
.faqSection__subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(239,229,214,.85);
}
.faqSection__list {
  max-width: 760px;
  margin: 0 auto;
}
.faqItem {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.faqItem:first-child {
  border-top: 1px solid rgba(255,255,255,.08);
}
.faqItem__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  color: #efe5d6;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faqItem__btn:hover {
  color: #C8A46A;
}
.faqItem__btn::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: rgba(200,164,106,.8);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faqItem.is-open .faqItem__btn::after {
  transform: rotate(45deg);
}
.faqItem__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faqItem__contentInner {
  padding: 0 0 24px 0;
}
.faqItem__contentInner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(239,229,214,.86);
}

/* ===== Confidentiality & Ethics ===== */
.ethicsBlock {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ethicsBlock__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.ethicsBlock__icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #C8A46A;
}
.ethicsBlock__title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 0 0 16px;
  color: #C8A46A;
}
.ethicsBlock__text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(239,229,214,.88);
  margin: 0;
}

/* ===== Investment / Pricing Strip ===== */
.investmentStrip {
  padding: 32px 0;
  background: linear-gradient(135deg, rgba(200,164,106,.08), rgba(200,164,106,.02));
  border: 1px solid rgba(200,164,106,.15);
  border-radius: 16px;
  text-align: center;
  margin: 32px 0;
}
.investmentStrip__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(239,229,214,.9);
  margin: 0 0 12px;
}
.investmentStrip__note {
  font-size: 13px;
  color: rgba(239,229,214,.75);
  margin: 0;
}

/* ===== Response Time / CTA Enhancement ===== */
.ctaPanel--services {
  position: relative;
}
.ctaPanel__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(239,229,214,.78);
}
.ctaPanel__badge::before {
  content: "⏱";
}
