/* Services overview + the individual service pages
   (individual-therapy, mentoring, workshops all link this file). */

/* ── Hero ── */
.svc-hero { background: var(--paper); padding: 48px 36px 56px; border-bottom: 1px solid var(--rule); }
.svc-hero .inner { max-width: 1200px; margin: 0 auto; }

/* With a hero photo the header splits: copy left, photo bleeding off the right. */
.svc-hero:has(.hero-figure) {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.svc-hero:has(.hero-figure) .inner {
  max-width: none;
  margin: 0;
  padding-top: clamp(36px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.svc-hero:has(.hero-figure) p { max-width: 46ch; }
.svc-hero .crumbs { margin-bottom: 24px; }
.svc-hero .label { display: block; margin-bottom: 18px; }
.svc-hero h1 { font-size: clamp(44px, 5.6vw, 72px); line-height: 1.04; max-width: 20ch; }
.svc-hero h2 { font-size: clamp(27px, 3.2vw, 38px); line-height: 1.22; max-width: 22ch; margin-bottom: 26px; }
.svc-hero p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.8; max-width: 62ch; }
.svc-hero .hero-sub {
  line-height: 1.35;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--accent-deep);
  margin: 4px 0 0;
  max-width: none;
}
.svc-hero .btn { margin-top: 30px; }

/* ── Service cards ── */
.svc-cards { background: var(--bg); }
.svc-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--rule); padding: 34px 32px 32px; }
.svc-card-head { display: flex; align-items: center; gap: 18px; }
.svc-card h3 { font-size: 25px; line-height: 1.22; }
.svc-card .hair { margin: 20px 0 24px; }
.svc-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; margin: 0 0 30px; }
.svc-card .explore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
}
.svc-card .explore svg { width: 30px; height: 10px; stroke: currentColor; fill: none; transition: transform 0.2s; }
.svc-card .explore:hover { color: var(--accent-deep); }
.svc-card .explore:hover svg { transform: translateX(5px); }

/* Round icon badge, shared by cards and the "where we meet" columns */
.ic {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ic svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.ic-sm { width: 42px; height: 42px; }
.ic-sm svg { width: 18px; height: 18px; }

/* ── Centred section heading ── */
.head-c { text-align: center; margin-bottom: 36px; }
.head-c h2 { font-size: clamp(27px, 3.2vw, 36px); line-height: 1.25; }
.head-c .hair { margin: 16px auto 0; }
.head-c .sub { color: var(--ink-soft); font-size: 15px; margin: 14px 0 0; }

/* ── Columns split by hairlines ── */
.col-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: left; }
.col-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.col-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.col-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.col-grid > div { padding: 0 30px; border-left: 1px solid var(--rule); }
.col-grid > div:first-child { border-left: none; padding-left: 0; }
.col-grid > div:last-child { padding-right: 0; }
.col-grid p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin: 0; }
.col-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.col-head h3 { font-size: 21px; }

/* ── Where we meet ── */
.meet { background: var(--bg-soft); text-align: center; }
.meet .hair { margin: 14px auto 24px; }
.meet h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.2; }
.meet .sub { color: var(--ink-soft); font-size: 15px; margin: 14px 0 0; }
.meet .col-grid { margin-top: 36px; }

/* ── Slim facts strip (session length, where, who…) ── */
.meta-strip { background: var(--bg-soft); padding: 46px 36px; }
.meta-strip .inner { max-width: 1200px; margin: 0 auto; }
.meta-strip .col-grid > div { display: flex; align-items: flex-start; gap: 14px; }
.meta-strip svg { flex: 0 0 auto; width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 1.2; }
.meta-strip strong { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 5px; }
.meta-strip span { display: block; font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ── Bordered panels ── */
.panel-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.panel { background: var(--paper); border: 1px solid var(--rule); border-radius: 3px; padding: 30px 32px; }
.panel h3 { font-size: 23px; margin-bottom: 24px; }
.panel .ticks { columns: 2; column-gap: 30px; }
.format-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; text-align: center; }
.format-row svg { display: block; width: 28px; height: 28px; margin: 0 auto 12px; fill: none; stroke: var(--accent); stroke-width: 1.2; }
.format-row span { display: block; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

/* ── Closing band (heading + button, mantra to the right) ── */
.close-band { background: var(--bg-soft); }
.close-band-grid { display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; }
.close-band .mid { text-align: center; }
.close-band h2 { font-size: clamp(28px, 3.2vw, 38px); line-height: 1.25; margin-bottom: 14px; }
.close-band .mid p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 24px; line-height: 1.8; }
.close-band .mantra {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--accent-deep);
  text-align: right;
  margin: 0;
}
.close-band .mantra + svg { display: block; width: 28px; height: 28px; margin: 18px 0 0 auto; fill: none; stroke: var(--accent); stroke-width: 1.2; }
.close-band.accent { background: var(--accent); }
.close-band.accent h2 { color: #fff; }
.close-band.accent .mid p { color: rgba(255, 255, 255, 0.85); }
.close-band.accent .mantra { color: rgba(255, 255, 255, 0.92); }
.close-band.accent .mantra + svg { stroke: rgba(255, 255, 255, 0.8); }
.close-band.accent .btn { background: #fff; color: var(--accent-deep); border-color: #fff; }

/* ── Service page building blocks ── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.chips li {
  font-size: 13.5px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 9px 18px;
}
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding: 0 0 15px 26px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.ticks li:last-child { padding-bottom: 0; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.band-soft { background: var(--bg-soft); }
.band-paper { background: var(--paper); }

/* ── Fees ── */
.fees-body { background: var(--bg); }
.fees-body .container > * + * { margin-top: 24px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 34px 30px 32px;
  text-align: center;
}
.ic-solid { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.ic-solid svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.price-card h3 { font-size: 25px; padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
.price { font-family: "Cormorant Garamond", serif; font-size: 46px; line-height: 1; color: var(--accent-deep); margin-top: 22px; }
.price-quote { font-size: 31px; }
.price-unit { font-size: 13px; color: var(--muted); margin: 8px 0 0; }
.price-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin: 18px 0 26px; }
.price-avail { list-style: none; margin: 0 0 26px; padding: 20px 0 0; border-top: 1px solid var(--rule); text-align: left; display: grid; gap: 11px; }
.price-avail li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.price-avail svg { flex: 0 0 auto; width: 17px; height: 17px; fill: none; stroke: var(--accent); stroke-width: 1.3; }
.price-card .btn { margin-top: auto; }

.panel-title { text-align: center; font-size: 25px; margin-bottom: 30px; }
.icon-cols { text-align: center; }
.icon-cols svg { display: block; width: 30px; height: 30px; margin: 0 auto 14px; fill: none; stroke: var(--accent); stroke-width: 1.2; }
.icon-cols span { display: block; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

.info-cols > div { display: flex; align-items: flex-start; gap: 18px; }
.info-cols h3 { font-size: 22px; margin-bottom: 10px; }
.info-cols p { margin-bottom: 12px; }
.info-cols p:last-child { margin-bottom: 0; }

.panel.soft { background: var(--bg-soft); padding: 44px 46px; text-align: center; }
.panel.soft .label { display: block; margin-bottom: 16px; }
.panel.soft .hair { margin: 22px auto; }
.panel.soft h2 { font-size: clamp(27px, 3.1vw, 36px); line-height: 1.22; max-width: 24ch; margin: 0 auto; }
.panel.soft p { color: var(--ink-soft); margin: 0 0 24px; }
.panel.soft .btn + .btn { margin-left: 10px; }

/* ── FAQ ── */
.faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 0.4fr 1fr; gap: 64px; }
.faq h2 { font-size: clamp(32px, 4vw, 44px); line-height: 1.1; }
details { border-bottom: 1px solid var(--rule); padding: 22px 0; }
details summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--ink); font-weight: 500; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-family: "Inter", sans-serif; font-size: 24px; color: var(--accent-deep); transition: transform 0.2s; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { color: var(--ink-soft); font-size: 15.5px; margin: 14px 0 0; line-height: 1.7; max-width: 720px; }

@media (max-width: 1080px) {
  .col-grid.cols-5, .format-row { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .col-grid.cols-4 { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .col-grid.cols-4 > div:nth-child(odd) { border-left: none; padding-left: 0; }
}
@media (max-width: 960px) {
  .svc-hero { padding: 40px 24px 44px; }
  /* stack: copy first, photo below it */
  .svc-hero:has(.hero-figure) { display: block; padding: 0; }
  .svc-hero:has(.hero-figure) .inner { padding: 40px 24px 36px; }
  .svc-card-grid { grid-template-columns: 1fr; }
  .col-grid, .col-grid.cols-2, .col-grid.cols-4, .col-grid.cols-5 { grid-template-columns: 1fr; row-gap: 32px; }
  .price-grid { grid-template-columns: 1fr; }
  .panel.soft { padding: 32px 28px; }
  .panel.soft h2 { max-width: none; }
  .col-grid > div { padding: 0; border-left: none; }
  .panel-row { grid-template-columns: 1fr; }
  .panel .ticks { columns: 1; }
  .format-row { grid-template-columns: 1fr 1fr; row-gap: 26px; }
  .close-band-grid { grid-template-columns: 1fr; gap: 34px; }
  .close-band .mantra { text-align: center; }
  .close-band .mantra + svg { margin: 18px auto 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Workshops: photo under the "Who I work with" list */
.who-figure { margin: 28px 0 0; }
.who-figure img { display: block; width: 100%; border-radius: 3px; }
