@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --forest: #173328;
  --moss: #284d3c;
  --sage: #dae5d6;
  --sand: #f5efe5;
  --linen: #fbf8f2;
  --clay: #c76841;
  --ink: #1d2a24;
  --muted: #5f6f67;
  --card: #fffdf8;
  --line: rgba(29, 42, 36, 0.12);
  --shadow: 0 24px 70px rgba(23, 51, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}


.samples-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.samples-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 242, 0.78);
  border-bottom: 1px solid rgba(23, 51, 40, 0.08);
}

.samples-topbar .samples-shell,
.samples-nav,
.intro-grid,
.notes-row,
.editorial-meta,
.trust-grid,
.story-layout,
.quote-strip,
.action-row,
.support-grid {
  display: flex;
}

.samples-topbar .samples-shell {
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.samples-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.samples-nav {
  gap: 24px;
  font-size: 14px;
}

.samples-main {
  padding: 34px 0 80px;
}

.therapist-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.therapist-breadcrumbs a {
  color: var(--forest);
  font-weight: 700;
  transition: color 0.24s ease;
}

.therapist-breadcrumbs a:hover,
.therapist-breadcrumbs a:focus {
  color: var(--clay);
}

.therapist-breadcrumb-separator {
  color: rgba(95, 111, 103, 0.6);
}

.therapist-breadcrumb-current {
  color: var(--muted);
}

.samples-intro {
  padding: 28px 0 18px;
}

.eyebrow,
.concept-tag,
.mini-label,
.stat-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow {
  color: var(--clay);
  font-weight: 700;
  margin-bottom: 16px;
}

.intro-grid {
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.samples-intro h1 {
  max-width: 650px;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.95;
}

.intro-copy {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}

.picker-card,
.concept-card,
.mini-card,
.trust-panel,
.story-card,
.support-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.picker-card {
  width: min(100%, 320px);
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.9);
}

.picker-card label,
.picker-card select,
.picker-card p {
  display: block;
}

.picker-card label {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--moss);
}

.picker-card select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-size: 15px;
}

.picker-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.comparison-notes {
  padding: 8px 0 20px;
}

.notes-row {
  gap: 12px;
  flex-wrap: wrap;
}

.note-pill {
  padding: 10px 16px;
  border: 1px solid rgba(23, 51, 40, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  color: var(--muted);
}

.concept-wrap .samples-shell {
  display: grid;
  gap: 32px;
}

.concept-card {
  overflow: hidden;
  border-radius: 34px;
}

.concept-header {
  padding: 28px 30px 0;
}

.concept-header h2 {
  margin: 8px 0 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
}

.concept-header p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.therapist-p .editorial-hero {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr ;
  min-height: 720px;
}

.editorial-copy {
  padding: 44px 42px 42px;
  /* background: linear-gradient(180deg, rgba(255, 252, 247, 0.97), rgba(245, 239, 229, 0.97)); */
}

.editorial-copy h3,
.story-copy h3 {
  margin: 14px 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 0.95;
}

.editorial-copy p,
.story-copy p,
.trust-bio,
.support-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.editorial-meta {
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.mini-card {
  flex: 1 1 160px;
  min-height: 120px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.mini-card strong,
.story-stat strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 9px 14px;
  border-radius: 999px;
  background: #ecf2eb;
  color: var(--forest);
  font-size: 13px;
}

.action-row {
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.primary-btn {
  background: var(--forest);
  color: #fff;
}

.secondary-btn {
  border: 1px solid rgba(23, 51, 40, 0.14);
  background: rgba(255, 255, 255, 0.75);
}

.editorial-photo {
  position: relative;
  min-height: 100%;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(23, 51, 40, 0.12), rgba(23, 51, 40, 0.28)),
    url("../images/bg2.jpeg"),
    linear-gradient(180deg, #cfded4, #9ab8a8);
}

.editorial-photo img {
  width: 100%;
  height: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: 28px;
}

.photo-note {
  position: absolute;
  right: 56px;
  bottom: 56px;
  max-width: 290px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(23, 51, 40, 0.82);
  color: #eff6f0;
}

.photo-note p {
  margin: 6px 0 0;
  color: rgba(239, 246, 240, 0.8);
}

.concept-b .trust-grid {
  gap: 24px;
  padding: 28px 30px 34px;
  align-items: start;
}

.trust-sidebar {
  width: 330px;
}

.trust-panel {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #173328, #264b3b);
  color: #f5f4ef;
}

.trust-panel img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.trust-panel h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
}

.trust-panel .location {
  margin: 10px 0 18px;
  color: rgba(245, 244, 239, 0.72);
}

.stat-stack {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.stat-box {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-body {
  flex: 1;
  display: grid;
  gap: 18px;
}

.trust-summary {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fffdf9, #f5efe4);
  border: 1px solid var(--line);
}

.trust-summary h3 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
}

.support-grid {
  gap: 18px;
  flex-wrap: wrap;
}

.support-card {
  flex: 1 1 220px;
  min-height: 180px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
}

.support-card h4 {
  margin: 12px 0 10px;
  font-size: 20px;
}

.support-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.quote-strip {
  gap: 18px;
  align-items: stretch;
}

.quote-box,
.cta-box {
  flex: 1;
  padding: 24px;
  border-radius: 24px;
}

.quote-box {
  background: #edf3ec;
}

.quote-box blockquote {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  line-height: 1.1;
}

.cta-box {
  color: #fff;
  background: linear-gradient(135deg, #c76841, #a94a27);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.86);
}

.concept-c .story-layout {
  gap: 26px;
  padding: 30px;
  align-items: stretch;
}

.story-visual,
.story-copy {
  flex: 1;
}

.story-visual {
  position: relative;
  min-height: 680px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(23, 51, 40, 0.08), rgba(23, 51, 40, 0.48));
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-statbar {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.story-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(10px);
}

.story-copy {
  padding: 12px 8px 12px 10px;
}

.story-panel {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
}

.story-panel + .story-panel {
  margin-top: 16px;
}

.story-panel h4 {
  margin: 0 0 12px;
  font-size: 18px;
}

.divider-list {
  display: grid;
  gap: 14px;
}

.divider-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(29, 42, 36, 0.1);
}

.divider-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.divider-item strong {
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .intro-grid,
  .trust-grid,
  .story-layout,
  .therapist-p .editorial-hero,
  .quote-strip {
    display: block;
  }

  .picker-card,
  .trust-sidebar {
    width: 100%;
  }

  .picker-card {
    margin-top: 24px;
  }

  .therapist-p .editorial-hero,
  .story-visual {
    min-height: auto;
  }

  .editorial-photo,
  .story-visual {
    margin-top: 18px;
  }

  .story-visual {
    min-height: 540px;
  }

  .trust-body,
  .support-grid,
  .notes-row {
    margin-top: 18px;
  }

  .quote-box,
  .cta-box {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .samples-shell {
    width: min(100% - 24px, 1180px);
  }

  .samples-topbar .samples-shell {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
  }

  .concept-header,
  .concept-b .trust-grid,
  .concept-c .story-layout,
  .editorial-copy,
  .editorial-photo {
    padding-left: 18px;
    padding-right: 18px;
  }

  .concept-card,
  .picker-card,
  .support-card,
  .story-panel,
  .trust-summary,
  .trust-panel {
    border-radius: 22px;
  }

  .story-visual {
    min-height: 420px;
    border-radius: 22px;
  }

  .story-statbar {
    grid-template-columns: 1fr;
  }

  .photo-note {
    position: static;
    max-width: none;
    margin-top: 16px;
  }
}
