/* ================================================================
   LIGHTWORK THERAPY — Services & Dedicated Pages Styles
   Extends style.css
   ================================================================ */

/* ——————————————————————————————————————————
   NAV ACTIVE STATE
   —————————————————————————————————————————— */
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  width: 100%;
}

/* ——————————————————————————————————————————
   1. SERVICES LANDING HERO
   —————————————————————————————————————————— */
.services-hero {
  padding: clamp(120px, 14vw, 180px) clamp(24px, 4vw, 80px) clamp(80px, 10vw, 120px);
  background: linear-gradient(135deg, #FAF7F4 0%, #F5EEE8 50%, #EFE8F4 100%);
  overflow: hidden;
}

.services-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.services-hero-headline {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: clamp(20px, 3vw, 32px);
  letter-spacing: -0.02em;
}

.services-hero-headline em {
  color: var(--lavender);
  font-style: italic;
}

/* Hero Image Wrap */
.services-hero-img-wrap {
  position: relative;
  border-radius: 4px;
}

.services-hero-img {
  width: 100%;
  height: clamp(380px, 50vw, 580px);
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 32px 32px 100px rgba(0,0,0,0.08);
}

/* ——————————————————————————————————————————
   2. SERVICES LANDING GRID (8 Cards)
   —————————————————————————————————————————— */
.services-grid-section {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: linear-gradient(150deg, #FBF7F2 0%, #F5EDE0 50%, #F8F3EE 100%);
}

.services-grid-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: 16px;
}

/* Service Landing Card */
.services-landing-card {
  background: var(--white);
  border: 1px solid rgba(212, 176, 106, 0.15);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk), border-color 0.4s;
  position: relative;
}

.services-landing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(42, 42, 42, 0.08);
  border-color: var(--gold);
}

.svc-card-img-wrap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft-beige);
}

.svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-silk);
}

.services-landing-card:hover .svc-card-img {
  transform: scale(1.05);
}

.svc-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(42, 42, 42, 0.25));
  pointer-events: none;
}

.svc-card-body {
  padding: 32px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: background 0.4s;
}

/* Custom Card Hover Themes */
.svc-theme-individual:hover .svc-card-body { background: linear-gradient(135deg, #FAF7F4, #EFE8F4); }
.svc-theme-relationship:hover .svc-card-body { background: linear-gradient(135deg, #FBF7F2, #F5EDE0); }
.svc-theme-anxiety:hover .svc-card-body { background: linear-gradient(135deg, #DEEAF5, #E8DCED); }
.svc-theme-burnout:hover .svc-card-body { background: linear-gradient(135deg, #FBF7F2, #F8F3EE); }
.svc-theme-depression:hover .svc-card-body { background: linear-gradient(135deg, #EDE6DE, #E8E0F0); }
.svc-theme-trauma:hover .svc-card-body { background: linear-gradient(135deg, #E6ECE6, #EDE6DE); }
.svc-theme-postpartum:hover .svc-card-body { background: linear-gradient(135deg, #F9F1ED, #EDE6DE); }
.svc-theme-corporate:hover .svc-card-body { background: linear-gradient(135deg, #E2ECF5, #F5EEE8); }

.svc-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 176, 106, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: transform 0.4s var(--ease-silk), background 0.4s;
}

.services-landing-card:hover .svc-card-icon-wrap {
  transform: rotate(5deg) scale(1.08);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(212, 176, 106, 0.15);
}

.svc-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.svc-card-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}

.svc-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: auto;
  transition: gap 0.3s;
}

.services-landing-card:hover .svc-card-btn {
  gap: 12px;
}

/* ——————————————————————————————————————————
   3. DEDICATED DETAIL PAGE HERO
   —————————————————————————————————————————— */
.detail-hero {
  padding: clamp(120px, 14vw, 180px) clamp(24px, 4vw, 80px) clamp(80px, 10vw, 120px);
  overflow: hidden;
  position: relative;
}

/* Individualized gradients per page */
.bg-individual   { background: linear-gradient(135deg, #FAF7F4 0%, #F5EEE8 50%, #EFE8F4 100%); }
.bg-relationship { background: linear-gradient(135deg, #FBF7F2 0%, #F5EDE0 50%, #F8F3EE 100%); }
.bg-anxiety      { background: linear-gradient(135deg, #FAF8F5 0%, #E6EEF8 50%, #E2DCED 100%); }
.bg-burnout      { background: linear-gradient(135deg, #FDFBF7 0%, #F4ECE1 50%, #FAF6EE 100%); }
.bg-depression   { background: linear-gradient(135deg, #FAF7F4 0%, #EDE6DE 50%, #E9E1F0 100%); }
.bg-trauma       { background: linear-gradient(135deg, #FAF8F5 0%, #ECEFEA 50%, #EAE5F0 100%); }
.bg-postpartum   { background: linear-gradient(135deg, #FAF7F4 0%, #FAF0EB 50%, #F2EBE5 100%); }
.bg-corporate    { background: linear-gradient(135deg, #FAF9F6 0%, #E4EDF5 50%, #EAE6DF 100%); }

.detail-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.detail-hero-headline {
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: clamp(20px, 3vw, 32px);
  letter-spacing: -0.02em;
}

.detail-hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--lavender);
}

.detail-hero-summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.detail-hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.detail-hero-img-wrap {
  position: relative;
  border-radius: 4px;
}

.detail-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 24px 24px 80px rgba(0,0,0,0.06);
}

/* ——————————————————————————————————————————
   4. SYMPTOM SECTION ("You may be experiencing")
   —————————————————————————————————————————— */
.symptom-section {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: var(--white);
  border-bottom: 1px solid rgba(212, 176, 106, 0.08);
}

.symptom-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.symptom-header {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.symptom-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg);
  border-radius: 4px;
  border: 1px solid rgba(42, 42, 42, 0.03);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk);
}

.symptom-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(42, 42, 42, 0.03);
  background: var(--white);
  border-color: rgba(212, 176, 106, 0.12);
}

.symptom-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 176, 106, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.symptom-text {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-dark);
  font-weight: 350;
  line-height: 1.6;
}

/* ——————————————————————————————————————————
   5. HOW THERAPY CAN HELP SECTION
   —————————————————————————————————————————— */
.help-section {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: linear-gradient(150deg, #FBF7F2 0%, #F5EDE0 50%, #F8F3EE 100%);
}

.help-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.help-quote-col {
  position: sticky;
  top: 120px;
}

.help-blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  padding-left: 28px;
  border-left: 3px solid var(--gold);
}

.help-blockquote em {
  font-style: italic;
  color: var(--gold);
}

.help-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ——————————————————————————————————————————
   6. OUTCOMES SECTION
   —————————————————————————————————————————— */
.outcome-section {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: var(--white);
  border-top: 1px solid rgba(212, 176, 106, 0.08);
}

.outcome-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.outcome-header {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}

.outcome-card {
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
  border: 1px solid rgba(212, 176, 106, 0.15);
  border-radius: 4px;
  background: rgba(254, 253, 251, 0.8);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk), border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-color: var(--gold);
  background: var(--white);
}

.outcome-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 176, 106, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: transform 0.4s var(--ease-silk);
}

.outcome-card:hover .outcome-icon-wrap {
  transform: scale(1.1);
}

.outcome-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.outcome-card-body {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ——————————————————————————————————————————
   7. WHO THIS IS FOR (CHECKLIST CARDS)
   —————————————————————————————————————————— */
.for-section {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: linear-gradient(150deg, #FBF7F2 0%, #F5EDE0 50%, #F8F3EE 100%);
}

.for-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.for-header {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.for-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px clamp(32px, 5vw, 64px);
}

.for-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 24px;
  background: var(--white);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s;
}

.for-item:hover {
  transform: translateX(4px);
}

.for-check {
  font-size: 16px;
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}

.for-text {
  font-size: clamp(14px, 1.4vw, 15.5px);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.5;
}

/* ——————————————————————————————————————————
   8. FREQUENTLY ASKED QUESTIONS (CSS ACCORDION)
   —————————————————————————————————————————— */
.faq-section {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  background: var(--white);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Details/Summary Accordion */
.faq-accordion {
  border: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-accordion[open] {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(212, 176, 106, 0.06);
}

.faq-accordion summary {
  padding: 24px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 400;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  outline: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

/* Caret Icon */
.faq-accordion summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.4s var(--ease-silk);
  line-height: 1;
}

.faq-accordion[open] summary::after {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 32px 28px;
  border-top: 1px solid transparent;
  transition: border-color 0.3s;
}

.faq-accordion[open] .faq-content {
  border-top-color: rgba(42, 42, 42, 0.05);
}

.faq-answer {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ——————————————————————————————————————————
   9. BRAND CTA SECTIONS (DARK & PLUM)
   —————————————————————————————————————————— */
.detail-cta {
  padding: var(--section-pad) clamp(24px, 4vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-plum {
  background: linear-gradient(145deg, #2C2438 0%, #3A3050 45%, #2E3850 100%);
}

.cta-dark {
  background: linear-gradient(160deg, #1A1612 0%, #241D18 45%, #1E1828 100%);
}

.detail-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(203,184,232,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.detail-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.detail-cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 300;
  color: #F0EAE0;
  line-height: 1.1;
  margin-bottom: clamp(16px, 2vw, 24px);
  letter-spacing: -0.01em;
}

.detail-cta-headline em {
  color: var(--lavender);
  font-style: italic;
}

.detail-cta-body {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(240,234,224,0.6);
  line-height: 1.8;
  margin-bottom: clamp(32px, 5vw, 48px);
  font-weight: 300;
}

.detail-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.detail-cta .btn-ghost {
  color: rgba(240,234,224,0.8);
  border-color: rgba(240,234,224,0.25);
}

.detail-cta .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ——————————————————————————————————————————
   10. RESPONSIVE MEDIA QUERIES (4 Breakpoints)
   —————————————————————————————————————————— */
@media (max-width: 1280px) {
  .services-grid-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .services-hero-inner {
    gap: 48px;
  }
  .services-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .detail-hero-inner {
    gap: 48px;
  }
  .help-inner {
    gap: 48px;
    grid-template-columns: 1fr;
  }
  .help-quote-col {
    position: static;
  }
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .services-hero-img-wrap {
    order: -1;
  }
  .services-hero-img {
    height: clamp(300px, 60vw, 440px);
  }

  .detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .detail-hero-img-wrap {
    order: -1;
  }
  .detail-hero-img {
    height: auto;
  }
  .detail-hero-summary {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--gold);
    padding-top: 16px;
    margin-top: 16px;
  }
  .detail-hero-buttons {
    justify-content: center;
  }

  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .for-list {
    grid-template-columns: 1fr;
  }

  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid-layout {
    grid-template-columns: 1fr;
  }
  .outcome-grid {
    grid-template-columns: 1fr;
  }
  .detail-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .detail-cta-buttons .btn-primary,
  .detail-cta-buttons .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .faq-accordion summary {
    padding: 20px 24px;
  }
  .faq-content {
    padding: 0 24px 24px;
  }
}

/* ================================================================
   DESKTOP OPTIMIZATIONS (1440px, 1600px, 1920px, 2560px)
   ================================================================ */

@media (min-width: 1025px) {
  .services-hero-img {
    height: clamp(480px, 40vw, 680px);
  }
  .services-grid-layout {
    gap: 36px;
  }
  .svc-card-body {
    padding: 36px 32px;
  }
  .svc-card-title {
    font-size: 26px;
  }
  .svc-card-desc {
    font-size: 14px;
  }

  .detail-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
  }
  .detail-hero-img {
    height: clamp(500px, 40vw, 700px);
    width: 100%;
    aspect-ratio: auto;
  }
  .detail-hero-headline {
    font-size: clamp(52px, 4.5vw, 68px);
  }
  .detail-hero-summary {
    font-size: clamp(20px, 1.8vw, 24px);
    padding-left: 24px;
  }

  .symptom-grid {
    gap: 28px;
  }
  .symptom-card {
    padding: 36px 32px;
  }

  .help-inner {
    gap: 6rem;
  }
  .help-blockquote {
    font-size: clamp(34px, 3.2vw, 44px);
    padding-left: 36px;
  }

  .outcome-grid {
    gap: 24px;
  }
  .outcome-card {
    padding: 44px 32px;
  }
  .outcome-card-title {
    font-size: 24px;
  }
  .outcome-card-text {
    font-size: 14px;
  }
}

@media (min-width: 1600px) {
  .services-grid-layout {
    gap: 40px;
  }
  .detail-hero-inner {
    gap: 8rem;
  }
  .help-inner {
    gap: 8rem;
  }
  .outcome-grid {
    gap: 28px;
  }
  .outcome-card {
    padding: 48px 36px;
  }
}

@media (min-width: 1920px) {
  .services-hero-img {
    height: clamp(600px, 38vw, 850px);
  }
  .detail-hero-img {
    height: clamp(650px, 38vw, 900px);
  }
  .detail-hero-headline {
    font-size: clamp(64px, 4.2vw, 84px);
  }
  .detail-hero-summary {
    font-size: clamp(22px, 1.6vw, 28px);
  }
  .symptom-grid {
    gap: 36px;
  }
  .help-blockquote {
    font-size: clamp(40px, 3vw, 56px);
  }
  .outcome-grid {
    gap: 36px;
  }
  .outcome-card {
    padding: 56px 40px;
  }
}

@media (min-width: 2560px) {
  .services-hero-img {
    height: clamp(800px, 35vw, 1150px);
  }
  .detail-hero-img {
    height: clamp(850px, 35vw, 1200px);
  }
  .detail-hero-headline {
    font-size: clamp(80px, 3.8vw, 108px);
  }
  .detail-hero-summary {
    font-size: clamp(26px, 1.5vw, 34px);
  }
  .symptom-grid {
    gap: 48px;
  }
  .help-blockquote {
    font-size: clamp(52px, 2.8vw, 72px);
  }
  .outcome-grid {
    gap: 48px;
  }
  .outcome-card {
    padding: 64px 48px;
  }
}
