.treatment-page {
  background: #f8f9f7;
  color: var(--ink);
}

.treatment-page .site-header:not(.is-scrolled):not(.menu-open) {
  color: var(--white);
}

.treatment-page .site-header:not(.is-scrolled):not(.menu-open) .brand-mark {
  border-color: rgba(255, 255, 255, 0.72);
}

.treatment-page .site-header:not(.is-scrolled):not(.menu-open) .header-cta {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.treatment-page .site-header:not(.is-scrolled):not(.menu-open) .menu-toggle span {
  background: var(--white);
}

.treatment-breadcrumbs {
  display: flex;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-breadcrumbs a {
  color: inherit;
  text-underline-offset: 3px;
}

.treatment-hero {
  position: relative;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #7e8784;
  color: var(--white);
}

.treatment-hero-media {
  position: absolute;
  inset: 0;
}

.treatment-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.01);
}

.treatment-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 27, 26, 0.9) 0%, rgba(9, 27, 26, 0.72) 48%, rgba(9, 27, 26, 0.22) 78%, rgba(9, 27, 26, 0.08) 100%),
    linear-gradient(180deg, rgba(9, 27, 26, 0.2) 35%, rgba(9, 27, 26, 0.68) 100%);
}

.treatment-hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 790px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 92px) var(--page-gutter) 82px;
}

.treatment-hero-copy .section-label {
  margin-top: 45px;
  color: #a9c4bf;
}

.treatment-hero h1 {
  max-width: 760px;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: var(--heading-weight);
  line-height: var(--leading-display);
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.treatment-hero h1 span {
  display: block;
  max-width: 100%;
  white-space: normal;
}

@media (min-width: 901px) {
  .treatment-hero h1 {
    max-width: 900px;
  }

  .treatment-hero h1 span {
    white-space: nowrap;
  }
}

.treatment-hero-accent {
  color: #a9c4bf;
}

.treatment-hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--text-lead);
  line-height: var(--leading-body);
}

.treatment-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.treatment-primary-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 20px;
  background: var(--petrol);
  border: 1px solid var(--petrol);
  color: var(--white);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background-color 220ms ease;
}

.treatment-primary-cta:hover,
.treatment-primary-cta:focus-visible {
  transform: translateY(-2px);
}

.treatment-hero .treatment-primary-cta {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.treatment-text-link {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.treatment-fact-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  background: rgba(12, 41, 40, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.treatment-fact-strip > div {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 19px var(--page-gutter);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.treatment-fact-strip > div:last-child {
  border-right: 0;
}

.treatment-fact-strip dt {
  color: #9bb9b3;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.treatment-fact-strip dd {
  margin: 0;
  font-size: 12px;
}

.treatment-suitability,
.treatment-results,
.treatment-methods,
.treatment-care,
.treatment-planning,
.treatment-cost-faq {
  padding: var(--home-section-space) var(--page-gutter);
}

.treatment-suitability h2,
.treatment-results h2,
.treatment-methods h2,
.treatment-care h2,
.treatment-planning h2,
.treatment-cost-faq h2 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: var(--leading-display);
  letter-spacing: -0.055em;
}

.treatment-suitability {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(400px, 1.2fr);
  column-gap: clamp(48px, 8vw, 140px);
  background: var(--white);
}

.treatment-suitability-copy {
  align-self: center;
}

.treatment-suitability-copy > p:not(.section-label) {
  max-width: 620px;
  margin: 25px 0 0;
  color: #586662;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.treatment-suitability-copy .treatment-lead {
  color: var(--ink);
  font-size: var(--text-lead);
}

.treatment-suitability-copy .treatment-text-link {
  margin-top: 28px;
  color: var(--petrol);
}

.treatment-placeholder {
  margin: 0;
  background: #e5e8e5;
  color: #5e6966;
  overflow: hidden;
}

.treatment-placeholder > div {
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(135deg, transparent 49.85%, rgba(23, 32, 31, 0.1) 50%, transparent 50.15%),
    linear-gradient(45deg, transparent 49.85%, rgba(23, 32, 31, 0.08) 50%, transparent 50.15%);
}

.treatment-placeholder figcaption {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 20px;
  padding: 16px 18px;
  border-top: 1px solid rgba(23, 32, 31, 0.15);
  font-size: 10px;
  line-height: 1.5;
}

.treatment-placeholder figcaption strong,
.treatment-placeholder figcaption small {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.treatment-placeholder figcaption small {
  color: #7a8581;
  white-space: nowrap;
}

.treatment-placeholder-assessment > div {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.treatment-placeholder-frame {
  position: absolute;
  inset: 14% 22%;
  border: 1px solid rgba(23, 32, 31, 0.22);
}

.treatment-placeholder-focus {
  position: absolute;
  top: 31%;
  left: 43%;
  width: 19%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 32, 31, 0.28);
  border-radius: 50%;
}

.treatment-decision-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: var(--home-section-space) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.treatment-decision-rail li {
  min-height: 178px;
  padding: 24px clamp(22px, 3vw, 42px) 26px 0;
  border-right: 1px solid var(--line);
}

.treatment-decision-rail li + li {
  padding-left: clamp(22px, 3vw, 42px);
}

.treatment-decision-rail li:last-child {
  border-right: 0;
}

.treatment-decision-rail > li > span,
.treatment-method-title > span,
.treatment-pathway li > span {
  color: #71817d;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.treatment-decision-rail strong {
  display: block;
  margin-top: 30px;
  font: 400 18px/1.25 var(--font-display);
}

.treatment-decision-rail p {
  max-width: 360px;
  margin: 10px 0 0;
  color: #65716e;
  font-size: 12px;
  line-height: 1.6;
}

.treatment-decision-rail p span + span::before {
  content: " ";
}

.treatment-results {
  background: #101817;
  color: var(--white);
}

.treatment-results .section-label {
  color: #9ebbb5;
}

.treatment-results-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: clamp(48px, 9vw, 150px);
}

.treatment-results-heading > p {
  max-width: 520px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.treatment-result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  gap: clamp(30px, 5vw, 80px);
  margin-top: var(--home-section-space);
}

.treatment-result-case {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.treatment-result-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #cfd5d1;
}

.treatment-placeholder-result > div {
  aspect-ratio: 1.2 / 1;
  min-height: 0;
}

.treatment-placeholder-head {
  position: absolute;
  top: 19%;
  left: 34%;
  width: 32%;
  height: 55%;
  border: 1px solid rgba(23, 32, 31, 0.22);
  border-radius: 48% 48% 42% 42%;
}

.treatment-placeholder-result figcaption {
  grid-template-columns: auto 1fr;
}

.treatment-result-case > footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 10px;
}

.treatment-result-case > footer span {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.treatment-result-case > footer strong {
  font-weight: 500;
  text-align: right;
}

.treatment-result-brief {
  align-self: stretch;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.treatment-result-brief ul {
  display: grid;
  gap: 13px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.treatment-result-brief li {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.5;
}

.treatment-result-case-secondary {
  width: calc((100% - clamp(30px, 5vw, 80px)) * 0.756);
  margin-top: clamp(34px, 5vw, 70px);
}

.treatment-methods {
  background: var(--white);
}

.treatment-methods-heading {
  max-width: 970px;
}

.treatment-methods-heading > p:last-child {
  max-width: 680px;
  margin: 25px 0 0;
  color: #56635f;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.treatment-methods-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.58fr) minmax(0, 1fr);
  margin-top: var(--home-section-space);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.treatment-methods-grid > article {
  padding: clamp(28px, 3.6vw, 54px);
}

.treatment-methods-grid > article:first-child {
  padding-left: 0;
}

.treatment-methods-grid > article:last-child {
  padding-right: 0;
}

.treatment-method-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 22px;
}

.treatment-method-title h3 {
  margin: 0;
  font: 400 var(--text-h3)/1 var(--font-display);
  letter-spacing: -0.05em;
}

.treatment-method-title small {
  grid-column: 2;
  margin-top: 7px;
  color: #6a7773;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-methods-grid article > p {
  max-width: 500px;
  margin: 26px 0 0;
  color: #56635f;
  font-size: 13px;
  line-height: 1.7;
}

.treatment-methods-grid dl {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.treatment-methods-grid dl > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.treatment-methods-grid dt {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-methods-grid dd {
  margin: 0;
  color: #5b6864;
  font-size: 11px;
  line-height: 1.55;
}

.treatment-methods-grid article > a {
  display: inline-flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 27px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--petrol);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.treatment-placeholder-procedure {
  align-self: stretch;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.treatment-placeholder-procedure > div {
  height: calc(100% - 101px);
  min-height: 390px;
}

.treatment-placeholder-procedure figcaption {
  grid-template-columns: 1fr;
  gap: 6px;
}

.treatment-placeholder-procedure figcaption small {
  white-space: normal;
}

.treatment-placeholder-procedure-line {
  position: absolute;
  top: 25%;
  right: 22%;
  left: 22%;
  height: 48%;
  border: 1px solid rgba(23, 32, 31, 0.2);
  border-radius: 50% 50% 32% 32%;
}

.treatment-placeholder-procedure-tool {
  position: absolute;
  top: 13%;
  left: 50%;
  width: 1px;
  height: 44%;
  background: rgba(23, 32, 31, 0.25);
  transform: rotate(18deg);
}

.treatment-method-note {
  max-width: 760px;
  margin: 28px 0 0 auto;
  color: #64716d;
  font-size: 12px;
  line-height: 1.65;
}

.treatment-care {
  background: #edf0ed;
}

.treatment-care-doctor {
  display: grid;
  grid-template-columns: minmax(350px, 0.78fr) minmax(430px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 8vw, 140px);
}

.treatment-care-doctor figure {
  height: clamp(530px, 52vw, 760px);
  margin: 0;
  overflow: hidden;
}

.treatment-care-doctor figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.76) contrast(0.98);
}

.treatment-care-doctor > div > p:not(.section-label) {
  max-width: 650px;
  margin: 26px 0 0;
  color: #56635f;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.treatment-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  padding: 18px 0;
  border-top: 1px solid #bcc5c1;
  border-bottom: 1px solid #bcc5c1;
  color: #5e6b67;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.treatment-care-doctor .treatment-text-link {
  margin-top: 28px;
  color: var(--petrol);
}

.treatment-pathway {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(460px, 1.3fr);
  gap: clamp(48px, 8vw, 140px);
  margin-top: var(--home-section-space);
  padding-top: var(--home-section-space);
  border-top: 1px solid #bcc5c1;
}

.treatment-pathway ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid #bcc5c1;
  list-style: none;
}

.treatment-pathway li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid #bcc5c1;
}

.treatment-pathway h3 {
  margin: 0;
  font: 400 18px/1.25 var(--font-display);
}

.treatment-pathway p {
  max-width: 590px;
  margin: 8px 0 0;
  color: #64716d;
  font-size: 12px;
  line-height: 1.6;
}

.treatment-planning {
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(390px, 1.1fr);
  gap: clamp(42px, 7vw, 120px);
  background: var(--white);
}

.treatment-planning-copy > p:not(.section-label) {
  max-width: 660px;
  margin: 26px 0 0;
  color: #586561;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.treatment-placeholder-aftercare {
  align-self: start;
}

.treatment-placeholder-aftercare > div {
  aspect-ratio: 3 / 2;
  min-height: 0;
}

.treatment-placeholder-bottle {
  position: absolute;
  top: 24%;
  bottom: 19%;
  left: 27%;
  width: 18%;
  border: 1px solid rgba(23, 32, 31, 0.22);
}

.treatment-placeholder-notes {
  position: absolute;
  top: 32%;
  right: 20%;
  bottom: 17%;
  width: 37%;
  border: 1px solid rgba(23, 32, 31, 0.22);
  transform: rotate(4deg);
}

.treatment-timeline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.treatment-timeline > div {
  min-height: 160px;
  padding: 24px clamp(22px, 3vw, 42px) 24px 0;
  border-right: 1px solid var(--line);
}

.treatment-timeline > div + div {
  padding-left: clamp(22px, 3vw, 42px);
}

.treatment-timeline > div:last-child {
  border-right: 0;
}

.treatment-timeline span {
  color: #71817d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-timeline strong {
  display: block;
  margin-top: 27px;
  font: 400 17px/1.25 var(--font-display);
}

.treatment-timeline p {
  margin: 9px 0 0;
  color: #65716e;
  font-size: 11px;
  line-height: 1.55;
}

.treatment-cost-faq {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(48px, 9vw, 150px);
  background: #dfe9e5;
}

.treatment-cost-panel > p:not(.section-label) {
  max-width: 600px;
  margin: 25px 0 0;
  color: #586561;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.treatment-cost-panel dl {
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.treatment-cost-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.treatment-cost-panel dt {
  color: #6c7975;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-cost-panel dd {
  margin: 0;
  text-align: right;
  font-size: 12px;
}

.treatment-faq-panel {
  padding-top: 5px;
}

.treatment-faq-list {
  margin-top: 20px;
  border-top: 1px solid #c5ceca;
}

.treatment-faq-list details {
  border-bottom: 1px solid #c5ceca;
}

.treatment-faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  list-style: none;
}

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

.treatment-faq-list summary::after {
  content: "+";
  color: #6d817c;
  font-size: 20px;
  font-weight: 300;
}

.treatment-faq-list details[open] summary::after {
  content: "−";
}

.treatment-faq-list details p {
  max-width: 720px;
  margin: -2px 0 26px;
  color: #5c6965;
  font-size: 12px;
  line-height: 1.7;
}

.treatment-faq-list summary:focus-visible {
  outline: 2px solid var(--petrol);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .treatment-methods-grid {
    grid-template-columns: 1fr 1fr;
  }

  .treatment-placeholder-procedure {
    grid-column: 1 / -1;
    grid-row: 2;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .treatment-placeholder-procedure > div {
    aspect-ratio: 2.4 / 1;
    height: auto;
    min-height: 0;
  }

  .treatment-placeholder-procedure figcaption {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
}

@media (max-width: 820px) {
  .treatment-hero {
    display: flex;
    flex-direction: column;
  }

  .treatment-hero-copy {
    min-height: 720px;
    padding: calc(var(--header-height) + 56px) var(--page-gutter) 62px;
  }

  .treatment-hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 27, 26, 0.88) 0%, rgba(9, 27, 26, 0.69) 70%, rgba(9, 27, 26, 0.28) 100%),
      linear-gradient(180deg, rgba(9, 27, 26, 0.18) 30%, rgba(9, 27, 26, 0.76) 100%);
  }

  .treatment-fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-fact-strip > div:nth-child(2) {
    border-right: 0;
  }

  .treatment-fact-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .treatment-suitability,
  .treatment-results-heading,
  .treatment-result-layout,
  .treatment-care-doctor,
  .treatment-pathway,
  .treatment-planning,
  .treatment-cost-faq {
    grid-template-columns: 1fr;
  }

  .treatment-placeholder-assessment {
    margin-top: 42px;
  }

  .treatment-result-layout,
  .treatment-pathway {
    gap: 42px;
  }

  .treatment-result-case-secondary {
    width: 100%;
  }

  .treatment-methods-grid {
    grid-template-columns: 1fr;
  }

  .treatment-methods-grid > article,
  .treatment-methods-grid > article:first-child,
  .treatment-methods-grid > article:last-child {
    padding: 36px 0;
  }

  .treatment-methods-grid > article + article {
    border-top: 1px solid var(--line);
  }

  .treatment-placeholder-procedure {
    grid-column: auto;
    grid-row: auto;
  }

  .treatment-placeholder-procedure > div {
    aspect-ratio: 4 / 3;
  }

  .treatment-care-doctor figure {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .treatment-planning {
    gap: 42px;
  }

  .treatment-placeholder-aftercare {
    margin-top: 2px;
  }

  .treatment-cost-faq {
    gap: var(--home-section-space);
  }
}

@media (max-width: 600px) {
  .treatment-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.4vw, 2.5625rem);
    letter-spacing: -0.055em;
  }

  .treatment-hero-media img {
    object-position: 39% center;
  }

  .treatment-hero-copy {
    min-height: 690px;
    padding: calc(var(--header-height) + 38px) var(--page-gutter) 52px;
  }

  .treatment-hero-copy .section-label {
    margin-top: 34px;
  }

  .treatment-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }

  .treatment-primary-cta {
    width: max-content;
    max-width: 100%;
  }

  .treatment-fact-strip > div {
    min-height: 96px;
    padding: 18px var(--page-gutter);
  }

  .treatment-placeholder figcaption,
  .treatment-placeholder-procedure figcaption {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .treatment-placeholder figcaption small {
    white-space: normal;
  }

  .treatment-decision-rail,
  .treatment-timeline {
    grid-template-columns: 1fr;
  }

  .treatment-decision-rail li,
  .treatment-decision-rail li + li,
  .treatment-timeline > div,
  .treatment-timeline > div + div {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .treatment-decision-rail strong,
  .treatment-timeline strong {
    margin-top: 19px;
  }

  .treatment-decision-rail p {
    max-width: none;
    font-size: clamp(10px, 3.2vw, 12px);
  }

  .treatment-decision-rail p span {
    display: block;
    white-space: nowrap;
  }

  .treatment-decision-rail p span + span::before {
    content: none;
  }

  .treatment-result-pair {
    grid-template-columns: 1fr;
  }

  .treatment-result-case > footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .treatment-result-case > footer strong {
    text-align: left;
  }

  .treatment-result-brief {
    padding: 20px;
  }

  .treatment-methods-grid dl > div {
    grid-template-columns: 88px 1fr;
  }

  .treatment-credentials {
    align-items: flex-start;
    flex-direction: column;
  }

  .treatment-pathway li {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .treatment-cost-panel dl > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .treatment-cost-panel dd {
    text-align: left;
  }

  .treatment-faq-list summary {
    min-height: 68px;
    font-size: 12px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .treatment-primary-cta {
    transition: none;
  }
}

/* Patient-led FUE/FUT choice */
.casebook-methods {
  background: var(--white);
}

.method-choice-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: stretch;
}

.method-choice-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
}

.method-choice-photo > div {
  min-height: 640px;
  background: #d9dedb;
}

.method-choice-photo figcaption {
  display: grid;
  gap: 5px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 9px;
  line-height: 1.5;
}

.method-choice-photo figcaption span {
  color: #74807c;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-choice-photo figcaption strong {
  font-weight: 500;
}

.method-choice-heading h2 {
  max-width: 820px;
}

.method-choice-heading > p:last-child {
  max-width: 690px;
  margin: 28px 0 0;
  color: #596560;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.method-choice-list {
  margin-top: clamp(42px, 5vw, 68px);
  border-top: 1px solid var(--line);
}

.method-choice-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.68fr) minmax(0, 1fr);
  column-gap: clamp(28px, 4vw, 56px);
  padding: clamp(28px, 3vw, 42px) 0;
  border-bottom: 1px solid var(--line);
}

.method-choice-list article > header {
  grid-row: 1 / span 3;
}

.method-choice-list article > header span {
  display: block;
  color: #687471;
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.method-choice-list h3 {
  margin: 15px 0 0;
  font: 400 var(--text-h3)/1.05 var(--font-display);
  letter-spacing: -0.05em;
}

.method-choice-list article > p {
  max-width: 540px;
  margin: 0;
  color: #53605c;
  font-size: 13px;
  line-height: 1.7;
}

.method-choice-list dl {
  margin: 22px 0 0;
}

.method-choice-list dl > div {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid #d5d9d7;
}

.method-choice-list dt {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-choice-list dd {
  margin: 0;
  color: #596560;
  font-size: 11px;
  line-height: 1.5;
}

.method-choice-list article > a {
  justify-self: start;
  margin-top: 19px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--petrol);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-choice-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 34px;
}

.method-choice-action p {
  max-width: 470px;
  margin: 0;
  color: #596560;
  font-size: 12px;
  line-height: 1.65;
}

.method-choice-action .treatment-primary-cta {
  flex: none;
}

@media (max-width: 900px) {
  .method-choice-grid {
    grid-template-columns: 1fr;
  }

  .method-choice-content {
    grid-row: 1;
  }

  .method-choice-photo {
    grid-row: 2;
    margin-top: 8px;
  }

  .method-choice-photo > div {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 700px) {
  .method-choice-heading > p:last-child {
    margin-top: 22px;
  }

  .method-choice-list {
    margin-top: 34px;
  }

  .method-choice-list article {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .method-choice-list article > header {
    grid-row: auto;
  }

  .method-choice-list article > p {
    margin-top: 20px;
  }

  .method-choice-list dl > div {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .method-choice-action {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .method-choice-action .treatment-primary-cta {
    width: 100%;
  }

  .method-choice-photo {
    margin-top: 40px;
  }
}

/* Hair-transplant clinical casebook
   The hero above and shared booking system remain deliberately unchanged. */
.casebook-assessment,
.casebook-results,
.casebook-methods,
.casebook-continuity,
.casebook-recovery,
.casebook-decisions {
  position: relative;
  scroll-margin-top: 76px;
  overflow: hidden;
  padding: var(--space-section) var(--page-gutter);
}

.casebook-assessment::before,
.casebook-results::before,
.casebook-methods::before,
.casebook-continuity::before,
.casebook-recovery::before,
.casebook-decisions::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--page-gutter) + 20px);
  width: 1px;
  background: currentColor;
  opacity: 0.14;
}

.casebook-index {
  position: absolute;
  z-index: 2;
  top: var(--space-section);
  left: var(--page-gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 7px;
  background: inherit;
  writing-mode: vertical-rl;
  color: #6d7975;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.casebook-index span {
  color: var(--petrol);
}

.casebook-index strong {
  font-weight: 600;
}

.casebook-assessment h2,
.casebook-results h2,
.casebook-methods h2,
.casebook-continuity h2,
.casebook-recovery h2,
.casebook-decisions h2 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: var(--leading-display);
  letter-spacing: -0.055em;
}

.hair-landing-page h2 {
  text-wrap: balance;
}

.hair-landing-page .results-showcase-intro h2 span {
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

.casebook-assessment {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.55fr);
  column-gap: clamp(50px, 9vw, 170px);
  background: var(--white);
}

.casebook-assessment-heading,
.casebook-assessment-copy,
.casebook-photo-assessment,
.casebook-notes {
  margin-left: clamp(60px, 7vw, 118px);
}

.casebook-assessment-heading {
  max-width: 990px;
}

.casebook-assessment-heading h2 {
  max-width: 920px;
}

.casebook-assessment-copy {
  align-self: end;
  padding-top: 26px;
  border-top: 1px solid #bfc8c4;
}

.casebook-assessment-copy p {
  max-width: 570px;
  margin: 22px 0 0;
  color: #5c6864;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.casebook-assessment-copy .casebook-pullquote {
  margin-top: 0;
  color: var(--ink);
  font: 400 var(--text-lead)/1.55 var(--font-display);
}

.casebook-assessment-copy .treatment-text-link {
  margin-top: 28px;
  color: var(--petrol);
}

.casebook-photo {
  margin-top: clamp(64px, 8vw, 126px);
  color: var(--ink);
}

.casebook-photo-assessment {
  grid-column: 1 / -1;
  width: min(83%, 1400px);
  justify-self: end;
  margin-right: calc(var(--page-gutter) * -1);
}

.casebook-photo-field {
  position: relative;
  aspect-ratio: 2.15 / 1;
  background:
    linear-gradient(90deg, #d8dcda 0 67%, #cbd0cd 67% 100%);
}

.casebook-photo-field::after {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border: 1px solid rgba(23, 32, 31, 0.14);
}

.casebook-crop-mark {
  position: absolute;
  z-index: 1;
  width: 34px;
  height: 34px;
}

.casebook-crop-mark::before,
.casebook-crop-mark::after {
  content: "";
  position: absolute;
  background: rgba(23, 32, 31, 0.4);
}

.casebook-crop-mark::before {
  width: 34px;
  height: 1px;
}

.casebook-crop-mark::after {
  width: 1px;
  height: 34px;
}

.casebook-crop-mark-a {
  top: 10%;
  left: 8%;
}

.casebook-crop-mark-b {
  right: 8%;
  bottom: 10%;
  transform: rotate(180deg);
}

.casebook-photo-number {
  position: absolute;
  right: 5%;
  bottom: 5%;
  color: rgba(23, 32, 31, 0.14);
  font: 200 clamp(80px, 13vw, 220px)/0.8 var(--font-display);
  letter-spacing: -0.08em;
}

.casebook-photo figcaption {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid #bdc5c1;
  font-size: 10px;
  line-height: 1.5;
}

.casebook-photo figcaption span,
.casebook-photo figcaption small {
  color: #77827e;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.casebook-photo figcaption strong {
  font-weight: 500;
}

.casebook-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(54px, 6vw, 96px);
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid #bdc5c1;
  list-style: none;
}

.casebook-notes li {
  min-width: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  min-height: 170px;
  padding: 25px clamp(22px, 3vw, 44px) 25px 0;
  border-right: 1px solid #bdc5c1;
}

.casebook-notes li + li {
  padding-left: clamp(22px, 3vw, 44px);
}

.casebook-notes li:last-child {
  border-right: 0;
}

.casebook-notes li > span {
  color: #71817d;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.casebook-notes strong {
  font: 400 18px/1.25 var(--font-display);
}

.casebook-notes p {
  margin: 15px 0 0;
  color: #64706c;
  font-size: 11px;
  line-height: 1.65;
}

.casebook-results {
  background: #0f1716;
  color: var(--white);
}

.casebook-results::before {
  background: var(--white);
}

.casebook-results .casebook-index {
  background: #0f1716;
  color: rgba(255, 255, 255, 0.48);
}

.casebook-results .casebook-index span,
.casebook-results .section-label {
  color: #9ebbb5;
}

.casebook-results-heading,
.case-record,
.case-record-contact-sheet {
  margin-left: clamp(60px, 7vw, 118px);
}

.casebook-results-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.55fr);
  align-items: end;
  gap: clamp(60px, 10vw, 180px);
}

.casebook-results-heading .section-label {
  grid-column: 1 / -1;
}

.casebook-results-heading h2 {
  margin-top: 0;
}

.casebook-results-heading > p:last-child {
  margin: 0;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.case-record {
  margin-top: clamp(70px, 9vw, 140px);
}

.case-record-header {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-record-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.16);
}

.case-record-images figure {
  margin: 0;
  background: #7c8380;
}

.case-record-image {
  position: relative;
  aspect-ratio: 1.26 / 1;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 54%, transparent 0 22%, rgba(15, 23, 22, 0.14) 22.3% 22.8%, transparent 23.1%),
    linear-gradient(130deg, #8d9491, #727a77);
}

.case-record-image span {
  position: absolute;
  right: 4%;
  bottom: 2%;
  color: rgba(255, 255, 255, 0.16);
  font: 200 clamp(64px, 10vw, 150px)/1 var(--font-display);
  letter-spacing: -0.08em;
}

.case-record-images figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
}

.case-record-images figcaption strong {
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-record-data {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.case-record-data > div {
  padding: 18px 18px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.case-record-data > div + div {
  padding-left: 18px;
}

.case-record-data > div:last-child {
  border-right: 0;
}

.case-record-data dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-record-data dd {
  margin: 10px 0 0;
  font-size: 12px;
}

.case-record-contact-sheet {
  display: grid;
  grid-template-columns: 110px 150px 150px minmax(0, 1fr);
  align-items: stretch;
  gap: 2px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.62);
}

.case-record-contact-sheet > span,
.case-record-contact-sheet > p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 9px;
  line-height: 1.55;
}

.case-record-contact-sheet > span {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-record-contact-sheet > div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  background: #777e7b;
  color: rgba(255, 255, 255, 0.75);
}

.case-record-contact-sheet i {
  font-style: normal;
  font-size: 9px;
}

.case-record-contact-sheet small {
  font-size: 9px;
}

.casebook-methods {
  background: #dfe9e5;
}

.casebook-methods-heading,
.method-plane,
.method-plane-note {
  margin-left: clamp(60px, 7vw, 118px);
}

.casebook-methods-heading {
  max-width: 1080px;
}

.method-plane {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.58fr) minmax(0, 1fr);
  margin-top: clamp(68px, 8vw, 126px);
  border-top: 1px solid #9fafa9;
  border-bottom: 1px solid #9fafa9;
}

.method-plane-copy {
  padding: clamp(30px, 4vw, 62px);
}

.method-plane-fue {
  padding-left: 0;
}

.method-plane-fut {
  padding-right: 0;
}

.method-code {
  display: block;
  color: rgba(18, 61, 60, 0.24);
  font: 200 clamp(70px, 9vw, 140px)/0.8 var(--font-display);
  letter-spacing: -0.08em;
}

.method-plane h3 {
  margin: 32px 0 0;
  font: 400 var(--text-h3)/1 var(--font-display);
  letter-spacing: -0.05em;
}

.method-plane-copy > p {
  max-width: 470px;
  margin: 20px 0 0;
  color: #53625d;
  font-size: 13px;
  line-height: 1.72;
}

.method-plane dl {
  margin: 30px 0 0;
  border-top: 1px solid #aab8b3;
}

.method-plane dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #aab8b3;
}

.method-plane dt {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-plane dd {
  margin: 0;
  color: #596762;
  font-size: 11px;
  line-height: 1.5;
}

.method-plane-copy > a {
  display: inline-flex;
  gap: 22px;
  margin-top: 27px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--petrol);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-plane-figure {
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  border-right: 1px solid #9fafa9;
  border-left: 1px solid #9fafa9;
}

.method-plane-figure > div {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #c7d3ce;
}

.method-plane-figure > div::before,
.method-plane-figure > div::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(18, 61, 60, 0.2);
}

.method-plane-figure > div::before {
  left: 34%;
}

.method-plane-figure > div::after {
  right: 34%;
}

.method-follicle {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 94px;
  border: 1px solid rgba(18, 61, 60, 0.4);
  border-radius: 50% 50% 30% 30%;
  transform: translateX(-50%);
}

.method-follicle::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  width: 1px;
  height: 60px;
  background: rgba(18, 61, 60, 0.4);
}

.method-follicle-one {
  top: 21%;
}

.method-follicle-two {
  top: 43%;
}

.method-follicle-three {
  top: 65%;
}

.method-plane-figure i,
.method-plane-figure b {
  position: absolute;
  bottom: 4%;
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-plane-figure i {
  left: 6%;
}

.method-plane-figure b {
  right: 6%;
}

.method-plane-figure figcaption {
  padding: 14px;
  color: #5d6b66;
  font-size: 8px;
  line-height: 1.5;
  text-transform: uppercase;
}

.method-plane-note {
  max-width: 710px;
  margin-top: 27px;
  margin-right: 0;
  margin-bottom: 0;
  color: #5b6964;
  font-size: 12px;
  line-height: 1.65;
}

.casebook-continuity {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  align-items: end;
  column-gap: 0;
  background: var(--white);
}

.continuity-portrait {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  height: min(78vw, 940px);
  margin: 0 0 0 clamp(60px, 7vw, 118px);
  overflow: hidden;
}

.continuity-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.76) contrast(0.98);
}

.continuity-portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  background: rgba(12, 41, 40, 0.88);
  color: rgba(255, 255, 255, 0.76);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.continuity-statement {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 clamp(60px, 7vw, 110px) clamp(-90px, -5vw, -40px);
  padding: clamp(36px, 5vw, 76px);
  background: var(--white);
  border-top: 1px solid var(--ink);
}

.continuity-statement > p:not(.section-label) {
  max-width: 590px;
  margin: 26px 0 0;
  color: #596662;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.treatment-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #61706b;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.continuity-path {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(54px, 7vw, 110px) 0 0 clamp(60px, 7vw, 118px);
  padding: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.continuity-path li {
  min-height: 158px;
  padding: 22px clamp(18px, 2.5vw, 36px) 22px 0;
  border-right: 1px solid var(--line);
}

.continuity-path li + li {
  padding-left: clamp(18px, 2.5vw, 36px);
}

.continuity-path li:last-child {
  border-right: 0;
}

.continuity-path li > span {
  color: #71817d;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.continuity-path strong {
  display: block;
  margin-top: 31px;
  font: 400 17px/1.2 var(--font-display);
}

.continuity-path p {
  margin: 8px 0 0;
  color: #697572;
  font-size: 10px;
  line-height: 1.5;
}

.casebook-recovery {
  background: #edf0ed;
}

.recovery-heading,
.recovery-track,
.recovery-still,
.recovery-risk {
  margin-left: clamp(60px, 7vw, 118px);
}

.recovery-heading {
  max-width: 1020px;
}

.recovery-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(72px, 9vw, 135px);
}

.recovery-track-line {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 1px;
  background: #9fada8;
}

.recovery-track article {
  position: relative;
  min-height: 210px;
  padding: 35px clamp(20px, 3vw, 44px) 25px 0;
  border-right: 1px solid #c1cac6;
}

.recovery-track article + article {
  padding-left: clamp(20px, 3vw, 44px);
}

.recovery-track article::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid #edf0ed;
  border-radius: 50%;
  background: var(--petrol);
  box-shadow: 0 0 0 1px var(--petrol);
}

.recovery-track article + article::before {
  left: clamp(20px, 3vw, 44px);
}

.recovery-track article > span {
  color: #65746f;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recovery-track strong {
  display: block;
  margin-top: 28px;
  font: 400 17px/1.25 var(--font-display);
}

.recovery-track p {
  max-width: 260px;
  margin: 11px 0 0;
  color: #65716d;
  font-size: 11px;
  line-height: 1.6;
}

.recovery-still {
  width: 68%;
  margin-top: clamp(48px, 6vw, 90px);
}

.recovery-still > div {
  position: relative;
  aspect-ratio: 1.9 / 1;
  background: linear-gradient(120deg, #cbd1ce 0 58%, #bfc7c3 58% 100%);
}

.recovery-still > div::before {
  content: "";
  position: absolute;
  top: 18%;
  right: 13%;
  bottom: 16%;
  left: 28%;
  border: 1px solid rgba(23, 32, 31, 0.16);
}

.recovery-still > div span {
  position: absolute;
  top: 18px;
  left: 18px;
  color: #66736f;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recovery-still figcaption {
  padding: 14px 0;
  border-bottom: 1px solid #b9c3be;
  color: #65716d;
  font-size: 9px;
  line-height: 1.5;
}

.recovery-risk {
  width: 44%;
  margin-top: -90px;
  margin-right: 0;
  margin-left: auto;
  padding: clamp(28px, 4vw, 54px);
  background: var(--petrol);
  color: var(--white);
}

.recovery-risk .section-label {
  color: #a7c2bd;
}

.recovery-risk p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.72;
}

.casebook-decisions {
  display: grid;
  grid-template-columns: minmax(310px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(64px, 11vw, 200px);
  background: var(--white);
}

.decision-heading,
.decision-ledger,
.decision-questions {
  margin-left: clamp(60px, 7vw, 118px);
}

.decision-heading {
  grid-column: 1 / -1;
  max-width: 1030px;
}

.decision-ledger {
  margin-top: 8px;
  margin-bottom: 0;
  border-top: 1px solid var(--ink);
}

.decision-ledger > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.decision-ledger dt {
  color: #697571;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-ledger dd {
  margin: 0;
  font: 400 17px/1.2 var(--font-display);
  text-align: right;
}

.decision-ledger small {
  grid-column: 1 / -1;
  color: #75817d;
  font-size: 10px;
}

.decision-questions {
  margin-top: 8px;
  border-top: 1px solid var(--ink);
}

.decision-questions > .section-label {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.decision-questions details {
  border-bottom: 1px solid var(--line);
}

.decision-questions summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  list-style: none;
}

.decision-questions summary::-webkit-details-marker {
  display: none;
}

.decision-questions summary::after {
  content: "+";
  color: #6d817c;
  font-size: 20px;
  font-weight: 300;
}

.decision-questions details[open] summary::after {
  content: "−";
}

.decision-questions details p {
  max-width: 700px;
  margin: -3px 0 28px;
  color: #5c6965;
  font-size: 12px;
  line-height: 1.7;
}

.decision-questions summary:focus-visible {
  outline: 2px solid var(--petrol);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .casebook-assessment {
    grid-template-columns: 1fr;
  }

  .casebook-assessment-copy {
    max-width: 620px;
    margin-top: 44px;
  }

  .casebook-photo-assessment {
    width: calc(100% - clamp(60px, 7vw, 118px));
  }

  .casebook-results-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .method-plane {
    grid-template-columns: 1fr 1fr;
  }

  .method-plane-figure {
    grid-column: 1 / -1;
    grid-row: 2;
    border: 0;
    border-top: 1px solid #9fafa9;
  }

  .method-plane-figure > div {
    min-height: 420px;
  }

  .casebook-continuity {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  }

  .continuity-statement {
    margin-left: -50px;
    padding: 36px;
  }

  .casebook-decisions {
    grid-template-columns: 1fr;
  }

  .decision-questions {
    margin-top: 14px;
  }
}

@media (max-width: 700px) {
  .casebook-assessment,
  .casebook-results,
  .casebook-methods,
  .casebook-continuity,
  .casebook-recovery,
  .casebook-decisions {
    padding: 78px var(--page-gutter);
  }

  .casebook-assessment::before,
  .casebook-results::before,
  .casebook-methods::before,
  .casebook-continuity::before,
  .casebook-recovery::before,
  .casebook-decisions::before {
    top: 34px;
    right: var(--page-gutter);
    bottom: auto;
    left: var(--page-gutter);
    width: auto;
    height: 1px;
  }

  .casebook-index {
    top: 29px;
    right: auto;
    left: var(--page-gutter);
    flex-direction: row;
    padding: 0 8px 0 0;
    writing-mode: horizontal-tb;
  }

  .casebook-assessment-heading,
  .casebook-assessment-copy,
  .casebook-photo-assessment,
  .casebook-notes,
  .casebook-results-heading,
  .case-record,
  .case-record-contact-sheet,
  .casebook-methods-heading,
  .method-plane,
  .method-plane-note,
  .continuity-portrait,
  .continuity-path,
  .recovery-heading,
  .recovery-track,
  .recovery-still,
  .recovery-risk,
  .decision-heading,
  .decision-ledger,
  .decision-questions {
    margin-left: 0;
  }

  .casebook-photo-assessment {
    width: calc(100% + var(--page-gutter));
  }

  .casebook-photo-field {
    aspect-ratio: 4 / 3;
  }

  .casebook-photo figcaption {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .casebook-notes {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .casebook-notes li,
  .casebook-notes li + li {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #bdc5c1;
  }

  .casebook-notes p {
    white-space: nowrap;
    font-size: clamp(9.5px, 3vw, 11px);
  }

  .case-record-header {
    grid-template-columns: 1fr auto;
  }

  .case-record-header span:nth-child(2) {
    display: none;
  }

  .case-record-images {
    grid-template-columns: 1fr;
  }

  .case-record-data {
    grid-template-columns: 1fr 1fr;
  }

  .case-record-data > div:nth-child(2) {
    border-right: 0;
  }

  .case-record-data > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .case-record-contact-sheet {
    grid-template-columns: 1fr 1fr;
  }

  .case-record-contact-sheet > span,
  .case-record-contact-sheet > p {
    grid-column: 1 / -1;
  }

  .method-plane {
    grid-template-columns: 1fr;
  }

  .method-plane-copy,
  .method-plane-fue,
  .method-plane-fut {
    padding: 34px 0;
  }

  .method-plane-figure {
    grid-column: auto;
    grid-row: auto;
  }

  .method-plane-figure > div {
    min-height: 460px;
  }

  .casebook-continuity {
    display: block;
  }

  .continuity-portrait {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .continuity-statement {
    margin: -56px 0 0 24px;
    padding: 30px 0 0 28px;
  }

  .continuity-path {
    grid-template-columns: 1fr 1fr;
    margin-top: 62px;
  }

  .continuity-path li:nth-child(2) {
    border-right: 0;
  }

  .continuity-path li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .recovery-track {
    grid-template-columns: 1fr;
    margin-top: 58px;
    padding-left: 20px;
  }

  .recovery-track-line {
    top: 0;
    bottom: 0;
    left: 4px;
    width: 1px;
    height: auto;
  }

  .recovery-track article,
  .recovery-track article + article {
    min-height: 0;
    padding: 0 0 38px 24px;
    border-right: 0;
  }

  .recovery-track article::before,
  .recovery-track article + article::before {
    top: 3px;
    left: -20px;
  }

  .recovery-track strong {
    margin-top: 14px;
  }

  .recovery-still {
    width: 100%;
    margin-top: 26px;
  }

  .recovery-still > div {
    aspect-ratio: 4 / 3;
  }

  .recovery-risk {
    width: calc(100% - 24px);
    margin-top: -22px;
    margin-left: 24px;
  }

  .casebook-decisions {
    gap: 52px;
  }
}

/* Homepage-aligned treatment content.
   Photography gaps stay as plain grey fields until final clinic imagery arrives. */
.casebook-assessment,
.casebook-results,
.casebook-methods,
.casebook-continuity,
.casebook-recovery,
.casebook-decisions {
  padding: var(--home-section-space) var(--page-gutter);
}

.casebook-assessment::before,
.casebook-results::before,
.casebook-methods::before,
.casebook-continuity::before,
.casebook-recovery::before,
.casebook-decisions::before {
  display: none;
}

.casebook-index {
  display: none;
}

.casebook-assessment-heading,
.casebook-assessment-copy,
.casebook-photo-assessment,
.casebook-notes,
.casebook-results-heading,
.case-record,
.case-record-contact-sheet,
.casebook-methods-heading,
.method-plane,
.method-plane-note,
.continuity-portrait,
.continuity-path,
.recovery-heading,
.recovery-track,
.recovery-still,
.recovery-risk,
.decision-heading,
.decision-ledger,
.decision-questions {
  margin-left: 0;
}

.casebook-assessment {
  display: block;
}

.casebook-assessment-heading {
  max-width: 1040px;
}

.casebook-assessment-copy {
  max-width: 760px;
  margin-top: clamp(26px, 3vw, 40px);
  padding-top: 0;
  border-top: 0;
}

.casebook-photo-assessment {
  width: 100%;
  margin-top: clamp(48px, 6vw, 88px);
  margin-right: 0;
}

.casebook-photo-field {
  aspect-ratio: 2.15 / 1;
  background: #d9dedb;
}

.casebook-photo-field::after,
.casebook-crop-mark,
.casebook-photo-number {
  display: none;
}

.casebook-photo figcaption {
  grid-template-columns: 130px minmax(0, 1fr) auto;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.casebook-notes {
  margin-top: var(--home-section-space);
  border-color: var(--line);
}

.casebook-notes li {
  min-height: 154px;
  border-color: var(--line);
}

.casebook-results {
  background: #101817;
}

.casebook-results-heading {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.6fr);
  gap: clamp(44px, 8vw, 130px);
}

.case-record {
  margin-top: var(--home-section-space);
}

.case-record-image {
  background: #7e8582;
}

.case-record-image span {
  top: 16px;
  right: auto;
  bottom: auto;
  left: 16px;
  color: rgba(255, 255, 255, 0.62);
  font: 600 9px/1 var(--font-body);
  letter-spacing: 0.1em;
}

.case-record-contact-sheet {
  margin-top: 26px;
}

.case-record-contact-sheet > div {
  background: #7e8582;
}

.casebook-methods {
  background: var(--white);
}

.casebook-methods-heading {
  max-width: 980px;
}

.method-plane {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: var(--home-section-space);
  border-color: var(--line);
}

.method-plane-figure {
  grid-column: 1 / -1;
  grid-row: 1;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.method-plane-figure > div {
  min-height: 0;
  aspect-ratio: 3 / 1;
  background: #d9dedb;
}

.method-plane-figure > div::before,
.method-plane-figure > div::after,
.method-follicle,
.method-plane-figure i,
.method-plane-figure b {
  display: none;
}

.method-plane-figure figcaption {
  padding: 14px 0;
  border-bottom: 0;
}

.method-plane-copy {
  grid-row: 2;
  padding: clamp(30px, 4vw, 54px);
}

.method-plane-fue {
  grid-column: 1;
  padding-left: 0;
  border-right: 1px solid var(--line);
}

.method-plane-fut {
  grid-column: 2;
  padding-right: 0;
}

.method-code {
  color: #687471;
  font: 600 var(--text-label)/1 var(--font-body);
  letter-spacing: 0.16em;
}

.method-plane h3 {
  margin-top: 24px;
}

.method-plane-note {
  margin-top: 25px;
}

.casebook-continuity {
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(48px, 8vw, 136px);
  background: #edf0ed;
}

.continuity-portrait {
  grid-column: 1;
  grid-row: 1;
  height: clamp(520px, 54vw, 760px);
}

.continuity-statement {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 0;
  background: transparent;
  border-top: 0;
}

.continuity-path {
  grid-column: 1 / -1;
  margin-top: var(--home-section-space);
}

.casebook-recovery {
  background: var(--white);
}

.recovery-heading {
  max-width: 960px;
}

.recovery-track {
  margin-top: var(--home-section-space);
  border-top: 1px solid var(--line);
}

.recovery-track-line,
.recovery-track article::before {
  display: none;
}

.recovery-track article,
.recovery-track article + article {
  min-height: 188px;
  padding-top: 26px;
  border-color: var(--line);
}

.recovery-track article + article::before {
  display: none;
}

.recovery-track strong {
  margin-top: 24px;
}

.recovery-still {
  width: 100%;
  margin-top: var(--home-section-space);
}

.recovery-still > img {
  width: 100%;
  display: block;
  aspect-ratio: 2.2 / 1;
  object-fit: cover;
  object-position: center 34%;
}

.recovery-risk {
  width: 100%;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-top: 0;
  padding: clamp(30px, 4vw, 52px);
}

.recovery-risk p {
  max-width: 820px;
  margin-top: 0;
}

.casebook-decisions {
  grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(52px, 8vw, 132px);
  background: #edf0ed;
}

.decision-heading {
  max-width: 940px;
}

@media (max-width: 900px) {
  .casebook-assessment,
  .casebook-results-heading,
  .casebook-continuity,
  .casebook-decisions {
    grid-template-columns: 1fr;
  }

  .casebook-assessment-copy {
    margin-top: 0;
  }

  .continuity-portrait,
  .continuity-statement {
    grid-column: 1;
  }

  .continuity-portrait {
    grid-row: 1;
  }

  .continuity-statement {
    grid-row: 2;
  }

  .decision-heading {
    grid-column: 1;
  }
}

@media (max-width: 700px) {
  .casebook-assessment,
  .casebook-results,
  .casebook-methods,
  .casebook-continuity,
  .casebook-recovery,
  .casebook-decisions {
    padding: var(--home-section-space) var(--page-gutter);
  }

  .casebook-photo-assessment {
    width: 100%;
  }

  .casebook-photo-field,
  .method-plane-figure > div,
  .recovery-still > img {
    aspect-ratio: 4 / 3;
  }

  .casebook-photo figcaption {
    grid-template-columns: 1fr;
  }

  .casebook-notes {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .casebook-notes li,
  .casebook-notes li + li {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .casebook-notes p {
    white-space: normal;
    font-size: 11px;
  }

  .method-plane {
    grid-template-columns: 1fr;
  }

  .method-plane-figure {
    grid-column: 1;
  }

  .method-plane-copy,
  .method-plane-fue,
  .method-plane-fut {
    grid-column: 1;
    padding: 32px 0;
    border-right: 0;
  }

  .method-plane-fue {
    grid-row: 2;
  }

  .method-plane-fut {
    grid-row: 3;
    border-top: 1px solid var(--line);
  }

  .continuity-portrait {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .continuity-statement {
    margin: 0;
    padding: 0;
  }

  .continuity-path {
    grid-template-columns: 1fr 1fr;
  }

  .recovery-track {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .recovery-track article,
  .recovery-track article + article {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .recovery-risk {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 0;
  }
}

.casebook-assessment-copy .casebook-pullquote {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  letter-spacing: normal;
}

.casebook-assessment-copy > p:first-child {
  margin-top: 0;
  text-wrap: balance;
}

/* Editorial patient perspective */
.recovery-patient-story {
  width: min(100%, 1400px);
  margin: clamp(54px, 7vw, 96px) auto 0;
  padding: clamp(28px, 4vw, 54px) 0;
  display: grid;
  grid-template-columns: minmax(440px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(40px, 4vw, 72px);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--petrol);
  color: var(--white);
}

.recovery-patient-story .recovery-patient-portrait {
  position: relative;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: #d8ddda;
}

.recovery-patient-story .recovery-patient-portrait::before {
  content: none;
}

.recovery-patient-story .recovery-patient-portrait > img {
  width: 100%;
  height: auto;
  max-height: 520px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 64% center;
}

.recovery-patient-story figcaption {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: 0;
  padding: clamp(30px, 4vw, 52px) 0;
  background: transparent;
  border-bottom: 0;
}

.recovery-patient-story figcaption .section-label {
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.72);
}

.recovery-patient-story blockquote {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.45vw, 46px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.recovery-patient-story .recovery-quote-emphasis {
  color: rgba(255, 255, 255, 0.86);
  font-style: italic;
  font-weight: 300;
}

.recovery-patient-context {
  margin: clamp(26px, 3.4vw, 42px) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.recovery-patient-context span {
  margin: 0 8px;
}

@media (min-width: 901px) {
  .recovery-patient-story .recovery-patient-portrait > img {
    height: clamp(560px, 42vw, 640px);
    max-height: none;
    aspect-ratio: auto;
  }
}

@media (max-width: 900px) {
  .casebook-assessment-copy {
    margin-top: 28px;
  }

  .recovery-patient-story {
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
    gap: 32px;
  }

  .recovery-patient-story figcaption {
    margin-left: 0;
    padding-left: 0;
  }

  .recovery-patient-story blockquote {
    font-size: clamp(27px, 3.6vw, 34px);
  }
}

@media (max-width: 700px) {
  .recovery-patient-story {
    width: 100vw;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 42px 0 0 calc(50% - 50vw);
    padding: 0 0 32px;
  }

  .recovery-patient-story .recovery-patient-portrait {
    border-radius: 0;
  }

  .recovery-patient-story .recovery-patient-portrait > img {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .recovery-patient-story figcaption .section-label {
    margin-bottom: 18px;
  }

  .recovery-patient-story figcaption {
    width: auto;
    box-sizing: border-box;
    margin: 0;
    padding: 32px var(--page-gutter) 0;
  }

  .recovery-patient-story blockquote {
    font-size: clamp(24px, 6.8vw, 30px);
    line-height: 1.18;
  }

  .recovery-patient-context {
    margin-top: 24px;
  }
}

/* Patient reviews and case-study marquees */
.casebook-results {
  padding-inline: 0;
  padding-block: clamp(84px, 8vw, 128px);
  overflow: hidden;
}

.casebook-results-heading {
  width: 100%;
  max-width: 1500px;
  display: block;
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.casebook-results-heading .section-label {
  margin: 0 0 clamp(18px, 2vw, 28px);
}

.casebook-results-heading h2 {
  max-width: 880px;
  margin: 0;
}

.casebook-results-heading > p:last-child {
  max-width: 680px;
  margin: clamp(20px, 2.5vw, 30px) 0 0;
  padding: 0;
  border-top: 0;
}

.treatment-review-marquee {
  margin-top: clamp(46px, 5vw, 70px);
}

.treatment-review-marquee .review-strip-heading {
  margin-bottom: 16px;
  padding-bottom: 14px;
  padding-inline: var(--page-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.treatment-review-marquee .review-strip-card {
  width: clamp(310px, 25vw, 380px);
  min-height: 150px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.treatment-case-studies {
  margin-top: clamp(62px, 7vw, 92px);
}

.treatment-case-studies-heading {
  display: block;
  margin-bottom: 22px;
  padding-inline: var(--page-gutter);
}

.treatment-case-studies-heading p {
  margin: 0;
}

.treatment-case-studies-heading > p:last-child {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}

.treatment-case-studies .result-pair-images .image-placeholder {
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #858c89;
}

.treatment-case-studies .result-pair-card {
  width: clamp(580px, 52vw, 760px);
}

.treatment-case-studies .image-placeholder-copy {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
  .treatment-case-studies-heading > p:last-child {
    max-width: 620px;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .casebook-results {
    padding-block: 72px;
  }

  .treatment-review-marquee {
    margin-top: 38px;
  }

  .treatment-case-studies {
    margin-top: 48px;
  }

  .treatment-case-studies .result-pair-card {
    width: 82vw;
  }

  .treatment-case-studies .result-pair-images {
    grid-template-columns: 1fr;
  }
}

/* Hair results reuse the homepage results system. */
.treatment-results-showcase {
  scroll-margin-top: var(--header-height);
  background: var(--petrol);
}

.treatment-results-reviews {
  margin-top: clamp(48px, 6vw, 82px);
  overflow: hidden;
}

.treatment-results-reviews::before {
  content: "";
  width: min(1500px, calc(100% - (var(--page-gutter) * 2)));
  display: block;
  margin: 0 auto clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.treatment-results-reviews .review-strip-heading {
  margin-bottom: 16px;
}

.treatment-results-reviews .review-strip-card {
  border-color: #afc1bb;
  background: #dce6e2;
}

.treatment-results-reviews .review-strip-card > div {
  color: #536761;
}

.treatment-results-reviews .review-strip-card blockquote {
  color: #17332f;
}

.treatment-results-reviews .review-strip-card footer {
  border-color: rgba(23, 51, 47, 0.18);
  color: #586b65;
}

.treatment-results-reviews .review-strip-card footer strong {
  color: #17332f;
}

.treatment-results-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: clamp(34px, 4vw, 54px) auto 0;
  padding: 0 var(--page-gutter);
}

.treatment-results-ctas .treatment-primary-cta {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.treatment-results-ctas .treatment-text-link {
  color: var(--white);
}

.patient-journey-video {
  width: min(1500px, calc(100% - (var(--page-gutter) * 2)));
  margin: clamp(40px, 4vw, 62px) auto 0;
  padding-top: clamp(30px, 4vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.patient-journey-video > header {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.patient-journey-video .section-label {
  color: #9ebbb5;
}

.patient-journey-video h3 {
  max-width: 780px;
  margin: 18px auto 0;
  font: var(--heading-weight) var(--text-h2)/var(--leading-display) var(--font-display);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.patient-journey-video > header > p {
  max-width: 780px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

@media (min-width: 901px) {
  .patient-journey-video h3 {
    width: 100%;
    max-width: 780px;
    white-space: nowrap;
  }

  .patient-journey-video > header > p {
    width: 100%;
  }
}

.patient-journey-video figure {
  width: min(100%, 1100px);
  margin: clamp(38px, 5vw, 66px) auto 0;
}

.patient-journey-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: var(--radius-panel);
  background: #050807;
  object-fit: cover;
}

.patient-journey-video figcaption {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .patient-journey-video > header {
    margin-inline: auto;
    text-align: center;
  }

  .patient-journey-video h3 {
    margin-inline: auto;
  }

  .patient-journey-video > header > p {
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .treatment-results-reviews {
    margin-top: 44px;
  }

  .treatment-results-reviews::before {
    margin-bottom: 24px;
  }

  .patient-journey-video {
    width: calc(100% - (var(--page-gutter) * 2));
    margin-top: 38px;
    padding-top: 28px;
  }

  .patient-journey-video h3 {
    font-size: 34px;
  }

  .patient-journey-video figure {
    margin-top: 32px;
  }

  .patient-journey-video video {
    border-radius: var(--radius-panel);
  }

  .patient-journey-video figcaption {
    grid-template-columns: 1fr auto;
    gap: 7px 18px;
  }

  .patient-journey-video figcaption span:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .patient-journey-video figcaption span:last-child {
    grid-column: 2;
    grid-row: 1;
  }

  .treatment-results-ctas {
    align-items: center;
    flex-direction: column;
    gap: 22px;
  }

  .treatment-results-ctas .treatment-primary-cta {
    width: max-content;
    max-width: 100%;
  }

  .treatment-results-ctas .treatment-primary-cta,
  .treatment-results-ctas .treatment-text-link {
    align-self: center;
  }
}

/* Assessment: photography left, consultation content right */
.casebook-assessment {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  column-gap: clamp(54px, 7vw, 112px);
  align-items: start;
}

.casebook-photo-assessment {
  display: contents;
}

.casebook-photo-assessment .casebook-photo-field {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
}

.casebook-photo-assessment figcaption {
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: 1fr;
  gap: 5px;
}

.casebook-assessment-content {
  grid-column: 2;
  grid-row: 1;
}

.casebook-assessment-heading {
  max-width: 850px;
}

.casebook-assessment-copy {
  max-width: 720px;
}

.casebook-assessment-content .casebook-notes {
  grid-template-columns: 1fr;
  width: 100%;
  margin: clamp(20px, 2vw, 28px) 0 0;
}

.casebook-assessment-content .casebook-notes li,
.casebook-assessment-content .casebook-notes li + li {
  min-height: 0;
  padding: 22px 0;
  border-right: 0;
  border-bottom: 1px solid #bdc5c1;
}

.casebook-assessment-content .casebook-notes li > div {
  display: grid;
  grid-template-columns: minmax(170px, 0.75fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 3vw, 42px);
}

.casebook-assessment-content .casebook-notes p {
  margin-top: 0;
}

@media (max-width: 900px) {
  .casebook-assessment {
    grid-template-columns: 1fr;
  }

  .casebook-photo-assessment,
  .casebook-assessment-heading,
  .casebook-assessment-copy,
  .casebook-assessment-content .casebook-notes {
    grid-column: 1;
  }

  .casebook-assessment-content {
    display: contents;
  }

  .casebook-assessment-heading {
    grid-row: 1;
    margin-left: 0;
  }

  .casebook-assessment-copy {
    grid-row: 2;
    margin-left: 0;
  }

  .casebook-photo-assessment {
    grid-row: 3;
    display: block;
    align-self: auto;
    margin-top: 48px;
  }

  .casebook-assessment-content .casebook-notes {
    grid-row: 4;
    margin-left: 0;
    margin-top: 22px;
  }

  .casebook-photo-assessment .casebook-photo-field {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .casebook-photo-assessment figcaption {
    width: auto;
  }

}

@media (max-width: 700px) {
  .casebook-assessment-content .casebook-notes li > div {
    display: block;
  }

  .casebook-assessment-content .casebook-notes p {
    margin-top: 15px;
  }
}

@media (min-width: 360px) and (max-width: 700px) {
  .casebook-assessment-heading .suitability-line {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  .hair-landing-page .keep-together {
    white-space: nowrap;
  }
}

.hair-landing-page main p:not(.section-label) {
  text-wrap: pretty;
}

.hair-landing-page :is(
  .treatment-hero-lead,
  .casebook-assessment-copy > p,
  .casebook-notes p,
  .results-showcase-copy,
  .results-showcase-copy > span,
  .patient-journey-video header > p,
  .hair-section-heading > p,
  .hair-section-heading > div > p,
  .hair-consultation-steps p,
  .hair-procedure-steps p,
  .method-comparison-actions > p,
  .continuity-statement > p,
  .continuity-path p,
  .recovery-heading > p,
  .recovery-track p,
  .recovery-patient-context,
  .decision-heading > p,
  .decision-questions details p,
  .booking-intro-copy,
  .booking-form-intro
) {
  text-wrap: balance;
}

/* Hair transplant patient journey */
.hair-trust-band {
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid var(--line);
  background: #edf0ed;
}

.hair-trust-band dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1500px;
  margin: 0 auto;
}

.hair-trust-band dl > div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: center;
  column-gap: 14px;
  padding: 28px clamp(18px, 2.6vw, 42px);
  border-right: 1px solid var(--line);
}

.hair-trust-band dl > div:first-child {
  padding-left: clamp(18px, 2.6vw, 42px);
}

.hair-trust-band dl > div:last-child {
  padding-right: clamp(18px, 2.6vw, 42px);
  border-right: 0;
}

.hair-trust-band dt {
  display: contents;
  color: #6f7b77;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hair-trust-band dt span {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 9px;
}

.hair-trust-band dt svg {
  width: 18px;
  height: 18px;
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: center;
  justify-self: center;
  display: block;
  margin: 0;
  fill: none;
  stroke: var(--petrol);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.hair-trust-band dd {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--ink);
  font: 400 16px/1.25 var(--font-display);
}

.hair-trust-band small {
  grid-column: 2;
  grid-row: 3;
  display: block;
  margin-top: 5px;
  color: #68736f;
  font-size: 9px;
  line-height: 1.5;
}

.hair-consultation,
.hair-procedure {
  padding: var(--home-section-space) var(--page-gutter);
}

.hair-consultation {
  background: var(--white);
}

.hair-procedure {
  background: #edf0ed;
}

.hair-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  align-items: end;
  gap: clamp(52px, 8vw, 132px);
  max-width: 1500px;
  margin: 0 auto;
}

.hair-section-heading h2 {
  max-width: 900px;
  margin: 20px 0 0;
  font: 400 var(--text-h2)/var(--leading-display) var(--font-display);
  letter-spacing: -0.055em;
}

.hair-section-heading > p,
.hair-section-heading > div:last-child > p {
  max-width: 650px;
  margin: 0;
  color: #596560;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.hair-section-heading .treatment-text-link {
  margin-top: 25px;
}

.hair-consultation-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1500px;
  margin: clamp(54px, 6vw, 82px) auto 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.hair-consultation-steps li {
  min-height: 245px;
  padding: 26px clamp(18px, 2.2vw, 34px);
  border-right: 1px solid var(--line);
}

.hair-consultation-steps li:first-child {
  padding-left: 0;
}

.hair-consultation-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.hair-consultation-steps span,
.hair-procedure-steps li > span {
  display: block;
  color: #6d7975;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hair-consultation-steps strong,
.hair-procedure-steps strong {
  display: block;
  margin-top: 42px;
  font: 400 21px/1.15 var(--font-display);
  letter-spacing: -0.04em;
}

.hair-consultation-steps p,
.hair-procedure-steps p {
  margin: 16px 0 0;
  color: #596560;
  font-size: 11px;
  line-height: 1.65;
}

.hair-consultation-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1500px;
  margin: 34px auto 0;
  color: var(--white);
  background: var(--petrol);
}

.hair-consultation-facts > div {
  padding: 25px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hair-consultation-facts > div:last-child {
  border-right: 0;
}

.hair-consultation-facts dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hair-consultation-facts dd {
  margin: 8px 0 0;
  font-size: 12px;
}

.hair-procedure-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 7vw, 112px);
  max-width: 1500px;
  margin: clamp(54px, 6vw, 82px) auto 0;
  align-items: stretch;
}

.hair-procedure-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
}

.hair-procedure-photo > img {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
}

.hair-procedure-photo figcaption {
  padding: 14px 0;
  border-bottom: 1px solid #bdc5c1;
  color: #6d7874;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hair-procedure-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid #bdc5c1;
  list-style: none;
}

.hair-procedure-steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 22px;
  padding: 23px 0;
  border-bottom: 1px solid #bdc5c1;
}

.hair-procedure-steps strong {
  margin-top: 0;
}

.hair-procedure-steps p {
  max-width: 420px;
}

.hair-landing-page .casebook-methods {
  overflow: visible;
  background: var(--white);
}

.method-technique-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(42px, 4vw, 64px);
  align-items: start;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.method-editorial-list,
.method-guidance {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
}

.method-editorial-heading {
  position: static;
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

.method-editorial-heading h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.method-editorial-heading > p:last-child {
  width: 100%;
  max-width: 860px;
  margin: 26px auto 0;
  color: #596560;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.method-editorial-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
}

.method-editorial-list article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 540px;
  padding: clamp(36px, 4vw, 56px);
  overflow: hidden;
  border-radius: var(--radius-panel);
}

.method-editorial-list article:first-child {
  background: #123d3c;
}

.method-editorial-list article:nth-child(2) {
  background: #e5e9e6;
}

.method-editorial-list article + article {
  border-top: 1px solid rgba(18, 61, 60, 0.18);
  border-left: 0;
}

.method-editorial-list article:nth-child(2) h3 {
  color: #17332f;
}

.method-editorial-list article:nth-child(2) > p,
.method-editorial-list article:nth-child(2) dd {
  color: #435b55;
}

.method-editorial-list article:nth-child(2) > header span,
.method-editorial-list article:nth-child(2) dt {
  color: #245d55;
}

.method-editorial-list article:nth-child(2) dl > div {
  border-top-color: rgba(23, 51, 47, 0.16);
}

.method-editorial-list article:nth-child(2) dl > div:first-child {
  border-top-color: rgba(23, 51, 47, 0.28);
}

.method-editorial-list article > header span {
  display: block;
  margin-bottom: 15px;
  color: #a8c8c1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.method-editorial-list article > header {
  min-height: 120px;
}

.method-editorial-list h3 {
  max-width: 340px;
  margin: 0;
  color: var(--white);
  font: 400 clamp(28px, 2.7vw, 42px)/1.04 var(--font-display);
  letter-spacing: -0.052em;
}

.method-editorial-list article > p {
  max-width: 500px;
  min-height: 72px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.method-editorial-list dl {
  margin: 34px 0 0;
}

.method-editorial-list dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  min-height: 52px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.method-editorial-list dl > div:first-child {
  border-top-color: rgba(255, 255, 255, 0.32);
}

.method-editorial-list dt {
  color: #a8c8c1;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.6;
  text-transform: uppercase;
}

.method-editorial-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  line-height: 1.6;
}

.method-guidance {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  align-self: start;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  padding: clamp(36px, 4vw, 56px);
  border-top: 3px solid #4f7c72;
  border-radius: var(--radius-panel);
  background: #eaf0ed;
}

.method-guidance > div {
  max-width: none;
}

.method-guidance .section-label {
  color: #35675e;
}

.method-guidance h3 {
  max-width: 360px;
  margin: 15px 0 0;
  color: #17332f;
  font: 400 clamp(27px, 2.15vw, 36px)/1.04 var(--font-display);
  letter-spacing: -0.052em;
}

.method-guidance h3 span {
  display: block;
}

.method-guidance > div > p:last-child {
  max-width: 420px;
  margin: 10px 0 0;
  color: #4b5d58;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.method-guidance .treatment-primary-cta {
  align-self: flex-start;
  display: inline-flex;
  width: auto;
  margin-top: 22px;
  padding: 17px 20px;
  background: #174740;
  color: var(--white);
}

.hair-landing-page .continuity-statement > p + p {
  margin-top: 18px;
}

.hair-landing-page .treatment-credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 590px;
  gap: 0;
  margin-top: 36px;
  padding: 0;
  border: 0;
  background: #123d3c;
}

.hair-landing-page .treatment-credentials span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 78px;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hair-landing-page .treatment-credentials span:last-child {
  border-right: 0;
}

.hair-landing-page .treatment-credentials small {
  color: #a9c8c1;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hair-landing-page .treatment-credentials strong {
  margin-top: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-transform: none;
}

@media (max-width: 520px) {
  .hair-landing-page .treatment-credentials {
    grid-template-columns: 1fr;
  }

  .hair-landing-page .treatment-credentials span {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hair-landing-page .treatment-credentials span:last-child {
    border-bottom: 0;
  }
}

@media (min-width: 901px) {
  .hair-landing-page .casebook-continuity {
    grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(44px, 6vw, 104px);
  }
}

/* Carry the patient quote's petrol field across the full viewport. */
.hair-landing-page .recovery-patient-story {
  position: relative;
  border-top: 0;
  border-bottom: 0;
  isolation: isolate;
}

.hair-landing-page .recovery-patient-story::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--petrol);
  content: "";
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  .hair-landing-page .continuity-statement {
    margin-top: clamp(28px, 6vw, 48px);
  }
}

.hair-landing-page .recovery-heading > p:last-child,
.hair-landing-page .decision-heading > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: #596560;
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.hair-landing-page .casebook-recovery {
  background: var(--white);
}

.hair-landing-page .recovery-interactive-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.hair-landing-page .recovery-overview {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: clamp(32px, 3.5vw, 48px);
  border: 1px solid #d8dfdc;
  border-radius: var(--radius-panel);
  background: #f4f6f4;
}

.hair-landing-page .recovery-overview-panel {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.hair-landing-page .recovery-overview-panel .section-label {
  color: #2f6a5f;
}

.hair-landing-page .recovery-overview-panel > p:last-child {
  margin: 28px 0 0;
  color: #596560;
  font-size: 14px;
  line-height: 1.75;
}

.hair-landing-page .recovery-facts {
  margin: clamp(26px, 2.6vw, 36px) 0 0;
  padding-top: clamp(26px, 2.6vw, 36px);
  border-top: 1px solid #bdc9c4;
}

.hair-landing-page .recovery-facts > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.hair-landing-page .recovery-facts > div:last-child {
  border-bottom: 0;
}

.hair-landing-page .recovery-facts dt {
  color: #68746f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hair-landing-page .recovery-facts dd {
  margin: 0;
  color: #173f3a;
  font: 600 14px/1.35 var(--font-display);
  text-align: right;
}

.hair-landing-page .recovery-stage-tabs {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #91a69f;
}

.hair-landing-page .recovery-stage-tab {
  position: relative;
  min-height: 86px;
  padding: 19px 64px 19px 20px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #173f3a;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.hair-landing-page .recovery-stage-tab::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #90a69f;
  border-radius: 50%;
  color: #245d55;
  content: "+";
  font: 500 19px/1 var(--font-display);
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hair-landing-page .recovery-stage-tab:hover::after {
  border-color: var(--petrol);
}

.hair-landing-page .recovery-stage-tab[aria-selected="true"]::after {
  border-color: var(--petrol);
  background: var(--petrol);
  color: var(--white);
  content: "\2212";
}

.hair-landing-page .recovery-stage-tab::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--petrol);
  content: "";
  transform: translateY(-50%);
  transition: height 180ms ease;
}

.hair-landing-page .recovery-stage-tab:hover,
.hair-landing-page .recovery-stage-tab[aria-selected="true"] {
  background: #edf1ee;
}

.hair-landing-page .recovery-stage-tab[aria-selected="true"]::before {
  height: 100%;
}

.hair-landing-page .recovery-stage-tab:focus-visible {
  z-index: 1;
  outline: 2px solid var(--petrol);
  outline-offset: 3px;
}

.hair-landing-page .recovery-stage-tab span {
  display: block;
  color: #2f6a5f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hair-landing-page .recovery-stage-tab strong {
  display: block;
  margin-top: 10px;
  font: 500 clamp(18px, 1.5vw, 21px)/1.2 var(--font-display);
  letter-spacing: -0.02em;
}

.hair-landing-page .recovery-stage-panel {
  box-sizing: border-box;
  min-height: 0;
  margin-top: 26px;
  padding: clamp(30px, 3vw, 40px);
  background: var(--petrol);
  color: var(--white);
}

.hair-landing-page .recovery-stage-panel[hidden] {
  display: none;
}

.hair-landing-page .recovery-stage-panel h3 {
  max-width: 560px;
  margin: 0;
  font: 400 clamp(28px, 3.1vw, 44px)/1.06 var(--font-display);
  letter-spacing: -0.045em;
}

.hair-landing-page .recovery-stage-panel p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

@media (min-width: 901px) {
  .hair-landing-page .recovery-interactive-layout {
    align-items: stretch;
  }

  .hair-landing-page .recovery-timeline-interaction {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .hair-landing-page .recovery-stage-tabs {
    flex: 1 1 auto;
    grid-template-rows: repeat(4, minmax(86px, 1fr));
  }

  .hair-landing-page .recovery-stage-panel {
    height: fit-content;
    min-height: 0;
    align-self: start;
    padding-block: 34px;
  }
}

@media (max-width: 900px) {
  .hair-landing-page .recovery-interactive-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hair-landing-page .recovery-overview {
    max-width: 720px;
  }
}

@media (max-width: 520px) {
  .hair-landing-page .recovery-overview {
    padding: 28px 22px;
  }

  .hair-landing-page .recovery-overview-panel {
    padding: 0;
  }

  .hair-landing-page .recovery-facts > div {
    gap: 14px;
  }

  .hair-landing-page .recovery-stage-tab {
    min-height: 80px;
    padding: 17px 58px 17px 16px;
  }

  .hair-landing-page .recovery-stage-tab::after {
    right: 16px;
  }

  .hair-landing-page .recovery-stage-panel {
    min-height: 0;
    padding: 30px 22px;
  }

  .hair-landing-page .recovery-stage-panel p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hair-landing-page .recovery-stage-tab,
  .hair-landing-page .recovery-stage-tab::before,
  .hair-landing-page .recovery-stage-tab::after {
    transition: none;
  }
}

.hair-landing-page .recovery-risk h3 {
  margin: 0;
  font: 400 var(--text-h3)/1.1 var(--font-display);
  letter-spacing: -0.045em;
}

.hair-landing-page .recovery-risk p + p {
  margin-top: 17px;
}

.hair-landing-page .decision-questions > h2 {
  margin: 18px 0 clamp(26px, 3vw, 40px);
  font: 400 var(--text-h3)/1.1 var(--font-display);
  letter-spacing: -0.045em;
}

@media (max-width: 1100px) {
  .method-technique-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .method-editorial-heading {
    position: static;
    max-width: 850px;
  }

  .method-editorial-list {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .method-editorial-list article,
  .method-guidance {
    height: auto;
  }

  .method-guidance {
    position: static;
  }

  .method-editorial-list article > header,
  .method-editorial-list article > p {
    min-height: 0;
  }

  .method-editorial-list h3 {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .hair-trust-band dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hair-trust-band dl > div,
  .hair-trust-band dl > div:first-child,
  .hair-trust-band dl > div:last-child {
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .hair-trust-band dl > div:nth-child(2n) {
    border-right: 0;
  }

  .hair-trust-band dl > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hair-section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .hair-consultation-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hair-consultation-steps li,
  .hair-consultation-steps li:first-child,
  .hair-consultation-steps li:last-child {
    min-height: 220px;
    padding: 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .hair-consultation-steps li:nth-child(2n) {
    border-right: 0;
  }

  .hair-consultation-steps li:last-child {
    border-bottom: 0;
  }

  .hair-consultation-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hair-consultation-facts > div:nth-child(2n) {
    border-right: 0;
  }

  .hair-consultation-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hair-procedure-layout {
    grid-template-columns: 1fr;
  }

  .hair-procedure-photo > img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .method-technique-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .method-editorial-heading {
    position: static;
    max-width: 850px;
  }

  .method-editorial-list {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .method-editorial-list article + article {
    border-top: 1px solid rgba(18, 61, 60, 0.18);
    border-left: 0;
  }

  .method-editorial-list article > header,
  .method-editorial-list article > p {
    min-height: 0;
  }

  .method-editorial-list article {
    height: auto;
  }

  .method-editorial-list h3 {
    max-width: 100%;
  }

  .method-guidance {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .method-technique-layout {
    display: grid;
  }

  .method-guidance h3 {
    font-size: clamp(20px, 6.5vw, 28px);
  }

  .method-guidance h3 span {
    display: block;
    white-space: nowrap;
  }

  .casebook-assessment h2,
  .hair-section-heading h2,
  .method-editorial-heading h2,
  .continuity-statement h2,
  .recovery-heading h2,
  .decision-heading h2 {
    font-size: 34px;
  }

  .hair-trust-band dl {
    grid-template-columns: 1fr;
  }

  .hair-trust-band dl > div,
  .hair-trust-band dl > div:first-child,
  .hair-trust-band dl > div:last-child,
  .hair-trust-band dl > div:nth-child(2n),
  .hair-trust-band dl > div:nth-last-child(-n + 2) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hair-trust-band dl > div:last-child {
    border-bottom: 0;
  }

  .hair-consultation,
  .hair-procedure {
    padding: var(--home-section-space) var(--page-gutter);
  }

  .hair-consultation-steps {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .hair-consultation-steps li,
  .hair-consultation-steps li:first-child,
  .hair-consultation-steps li:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
  }

  .hair-consultation-steps strong {
    margin-top: 22px;
  }

  .hair-consultation-facts {
    grid-template-columns: 1fr;
  }

  .hair-consultation-facts > div,
  .hair-consultation-facts > div:nth-child(2n) {
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hair-consultation-facts > div:last-child {
    border-bottom: 0;
  }

  .hair-procedure-layout {
    margin-top: 40px;
  }

  .hair-procedure-steps li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
  }

  .method-editorial-list {
    margin-top: 32px;
  }

  .method-editorial-list article {
    padding: 34px 24px;
  }

  .method-editorial-list article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .method-editorial-list article > p {
    margin-top: 20px;
  }

  .method-editorial-list dl {
    margin-top: 26px;
  }

  .method-editorial-list dl > div {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
  }

  .method-guidance {
    margin-top: 0;
    padding: 24px 22px 22px;
  }

  .method-guidance .treatment-primary-cta {
    width: auto;
  }
}

/* Keep section headings and their supporting copy on one shared measure. */
.hair-landing-page .hair-section-heading {
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 850px;
  align-items: start;
  gap: 28px;
}

.hair-landing-page .hair-section-heading > p,
.hair-landing-page .hair-section-heading > div:last-child > p {
  width: 100%;
  max-width: none;
}

.hair-landing-page .casebook-assessment-heading,
.hair-landing-page .casebook-assessment-copy,
.hair-landing-page .recovery-heading,
.hair-landing-page .decision-heading {
  width: 100%;
  max-width: 850px;
}

.hair-landing-page .casebook-assessment-copy > p,
.hair-landing-page .recovery-heading > p:last-child,
.hair-landing-page .decision-heading > p:last-child {
  width: 100%;
  max-width: none;
}

.hair-landing-page .results-showcase-intro {
  max-width: calc(850px + (var(--page-gutter) * 2));
}

.hair-landing-page .results-showcase-copy {
  width: 100%;
  max-width: none;
}

.hair-landing-page .booking-intro h2,
.hair-landing-page .booking-intro-copy {
  width: 100%;
  max-width: 600px;
}

/* Keep the major page rows aligned with the header and hero gutters on wide screens. */
.hair-landing-page .hair-trust-band dl,
.hair-landing-page .hair-consultation-steps,
.hair-landing-page .hair-consultation-facts,
.hair-landing-page .method-technique-layout,
.hair-landing-page .booking-layout {
  max-width: none;
}

.hair-landing-page .patient-journey-video,
.hair-landing-page .treatment-results-reviews::before {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: none;
}

/* Consultation pathway */
.hair-landing-page .hair-consultation-steps li,
.hair-landing-page .hair-consultation-steps li:first-child,
.hair-landing-page .hair-consultation-steps li:last-child {
  padding: clamp(25px, 2.4vw, 36px);
  background: #f1f5f3;
  box-shadow: inset 0 4px 0 #a9c1b9;
}

.hair-landing-page .hair-consultation-steps li:nth-child(even) {
  background: #e5eeea;
  box-shadow: inset 0 4px 0 #789e92;
}

.hair-landing-page .hair-consultation-steps span {
  color: #245d55;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: none;
}

.hair-landing-page .hair-consultation-steps strong {
  margin-top: 30px;
  color: #17332f;
}

.hair-landing-page .hair-consultation-steps p {
  width: 100%;
  max-width: 34ch;
  color: #435b55;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hair-landing-page .hair-consultation-steps {
    grid-template-columns: 1fr;
  }

  .hair-landing-page .hair-consultation-steps li,
  .hair-landing-page .hair-consultation-steps li:first-child,
  .hair-landing-page .hair-consultation-steps li:last-child {
    min-height: 104px;
    display: grid;
    grid-template-columns: 76px minmax(190px, 0.75fr) minmax(0, 1fr);
    gap: clamp(20px, 4vw, 54px);
    align-items: start;
    padding: 26px clamp(22px, 4vw, 42px);
    border-right: 0;
    border-bottom: 1px solid #b9c9c3;
    box-shadow: inset 4px 0 0 #a9c1b9;
  }

  .hair-landing-page .hair-consultation-steps li:nth-child(even) {
    box-shadow: inset 4px 0 0 #789e92;
  }

  .hair-landing-page .hair-consultation-steps li:last-child {
    border-bottom: 0;
  }

  .hair-landing-page .hair-consultation-steps strong,
  .hair-landing-page .hair-consultation-steps p {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .hair-landing-page .hair-consultation-steps li,
  .hair-landing-page .hair-consultation-steps li:first-child,
  .hair-landing-page .hair-consultation-steps li:last-child {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px 14px;
    padding: 22px 20px;
  }

  .hair-landing-page .hair-consultation-steps strong {
    align-self: center;
  }

  .hair-landing-page .hair-consultation-steps p {
    grid-column: 2;
    margin-top: 3px;
  }
}

/* Consultation facts summary */
.hair-landing-page .hair-consultation-facts {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #2b625b;
  border-radius: var(--radius-panel);
  background: #174740;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hair-landing-page .hair-consultation-facts > div {
  min-height: 118px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 26px clamp(24px, 2.5vw, 38px);
  border-color: rgba(255, 255, 255, 0.16);
}

.hair-landing-page .hair-consultation-facts > div:nth-child(even) {
  background: rgba(255, 255, 255, 0.055);
}

.hair-landing-page .hair-consultation-facts dt {
  color: #b8d1ca;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hair-landing-page .hair-consultation-facts dd {
  margin-top: 14px;
  color: var(--white);
  font: 400 clamp(16px, 1.35vw, 19px) / 1.3 var(--font-display);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

@media (max-width: 900px) {
  .hair-landing-page .hair-consultation-facts > div {
    min-height: 108px;
  }
}

@media (max-width: 700px) {
  .hair-landing-page .hair-consultation-facts {
    margin-top: 22px;
  }

  .hair-landing-page .hair-consultation-facts > div,
  .hair-landing-page .hair-consultation-facts > div:nth-child(2n) {
    min-height: 78px;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 19px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hair-landing-page .hair-consultation-facts > div:last-child {
    border-bottom: 0;
  }

  .hair-landing-page .hair-consultation-facts dd {
    margin-top: 0;
    font-size: 16px;
  }
}

@media (min-width: 901px) {
  .hair-landing-page .hair-consultation > .hair-section-heading {
    margin-right: auto;
    margin-left: 0;
    text-align: left;
  }

  .hair-landing-page .hair-procedure > .hair-section-heading {
    margin-inline: auto;
    text-align: center;
  }

  .hair-landing-page .hair-procedure > .hair-section-heading h2,
  .hair-landing-page .hair-procedure > .hair-section-heading > p {
    margin-inline: auto;
  }
}

/* Layered procedure image and steps */
@media (min-width: 1101px) {
  .hair-landing-page .hair-procedure-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 0;
    align-items: center;
  }

  .hair-landing-page .hair-procedure-photo {
    position: relative;
    z-index: 0;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-panel);
  }

  .hair-landing-page .hair-procedure-photo > img {
    min-height: 0;
  }

  .hair-landing-page .hair-procedure-steps {
    position: relative;
    z-index: 1;
    width: calc(100% + clamp(56px, 5vw, 82px));
    box-sizing: border-box;
    margin-left: clamp(-82px, -5vw, -56px);
  }
}

/* Keep the technique comparison on a calmer centred measure. */
.hair-landing-page .method-technique-layout {
  max-width: 1400px;
}

/* Centre and tighten the doctor profile without changing the mobile stack. */
.hair-landing-page .casebook-continuity {
  background: #edf0ed;
}

.hair-landing-page .continuity-statement {
  background: transparent;
}

@media (min-width: 901px) {
  .hair-landing-page .casebook-continuity {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: max(var(--page-gutter), calc((100vw - 1500px) / 2 + var(--page-gutter)));
    padding-left: max(var(--page-gutter), calc((100vw - 1500px) / 2 + var(--page-gutter)));
    grid-template-columns: minmax(390px, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(28px, 3vw, 48px);
  }

  .hair-landing-page .continuity-portrait {
    margin-left: 0;
  }

  .hair-landing-page .continuity-statement {
    align-self: center;
    margin: 0;
    padding: clamp(34px, 3.5vw, 52px);
  }
}

.hair-landing-page .hair-procedure-steps {
  padding: clamp(18px, 2.3vw, 30px) clamp(24px, 3vw, 44px);
  border: 1px solid rgba(42, 77, 69, 0.2);
  border-radius: var(--radius-panel);
  background: rgba(246, 249, 247, 0.86);
  box-shadow: 0 22px 48px rgba(26, 53, 48, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hair-landing-page .hair-procedure-steps li {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: clamp(22px, 2.2vw, 30px) 0;
  border-color: rgba(42, 77, 69, 0.2);
}

.hair-landing-page .hair-procedure-steps strong {
  min-height: 0;
  font-size: clamp(21px, 1.65vw, 25px);
  line-height: 1.15;
  white-space: nowrap;
}

.hair-landing-page .hair-procedure-steps p {
  max-width: 630px;
  min-height: 6.88em;
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.hair-landing-page .hair-procedure-steps .procedure-step-sentence {
  display: block;
}

.hair-landing-page .hair-procedure-steps .procedure-step-sentence + .procedure-step-sentence {
  margin-top: 5px;
}

.hair-landing-page .hair-procedure-steps li > span {
  padding-top: 0;
  font-size: 9px;
}

.hair-landing-page .hair-procedure-steps li:last-child {
  border-bottom: 0;
}

@media (min-width: 1101px) {
  .hair-landing-page .hair-procedure-steps {
    width: calc(100% + 40px);
    margin-left: -40px;
    padding: 18px 28px;
  }

  .hair-landing-page .hair-procedure-steps li {
    padding: 16px 0;
  }

  .hair-landing-page .hair-procedure-steps p {
    min-height: 0;
    margin-top: 9px;
    line-height: 1.62;
  }

}

@media (max-width: 1100px) {
  .hair-landing-page .hair-procedure-layout {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
  }

  .hair-landing-page .hair-procedure-photo {
    overflow: hidden;
    border-radius: var(--radius-panel);
  }

  .hair-landing-page .hair-procedure-photo > img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hair-landing-page .hair-procedure-steps {
    position: relative;
    z-index: 1;
    width: calc(100% - 32px);
    box-sizing: border-box;
    margin: -40px auto 0;
  }

  .hair-landing-page .hair-procedure-steps li {
    display: block;
  }

  .hair-landing-page .hair-procedure-steps li > span {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .hair-landing-page .hair-procedure-steps li > div,
  .hair-landing-page .hair-procedure-steps strong,
  .hair-landing-page .hair-procedure-steps p {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .hair-landing-page .hair-procedure-steps p {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .hair-landing-page .hair-procedure-steps {
    margin-top: -24px;
    padding: 16px 20px;
  }

  .hair-landing-page .hair-procedure-steps li {
    padding: 18px 0;
  }
}

/* Suitability before-and-after comparison */
.hair-landing-page .suitability-comparison {
  --comparison-progress: 0;
  position: relative;
  display: grid;
  align-self: center;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: #cfd8d4;
}

.hair-landing-page .suitability-comparison::after {
  display: none;
}

.suitability-comparison-images {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 1317 / 800;
}

.suitability-comparison-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.suitability-comparison-images img {
  display: block;
  object-fit: contain;
  object-position: center;
}

.suitability-comparison-after {
  opacity: var(--comparison-progress);
  transition: opacity 180ms ease-out;
}

.suitability-comparison-state {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(249, 250, 248, 0.88);
  color: #17332f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.suitability-comparison-controls {
  position: relative;
  z-index: 2;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(23, 51, 47, 0.14);
  background: #f5f7f5;
}

.suitability-comparison-controls > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #17332f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.suitability-comparison-controls > div > span:last-child {
  text-align: right;
}

.suitability-comparison-controls input {
  display: block;
  width: 100%;
  margin: 0;
  accent-color: #245d55;
  cursor: ew-resize;
}

@media (min-width: 901px) {
  .hair-landing-page .casebook-assessment {
    overflow: visible;
  }

  .hair-landing-page .casebook-photo-assessment {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: block;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    width: 100%;
    margin: 0;
  }

  .hair-landing-page .casebook-photo-assessment .suitability-comparison {
    position: relative;
    top: auto;
  }
}

@media (max-width: 900px) {
  .hair-landing-page .casebook-photo-assessment .suitability-comparison {
    width: min(100%, 520px);
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .suitability-comparison-state {
    top: 14px;
    left: 14px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .suitability-comparison-after {
    transition: none;
  }
}

/* Procedure ledger rebuild: isolated from the retired layered procedure component. */
.hair-landing-page .procedure-ledger {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(620px, 1.1fr);
  gap: clamp(38px, 4vw, 64px);
  align-items: stretch;
  width: min(100%, 1200px);
  margin: clamp(54px, 6vw, 82px) auto 0;
}

.hair-landing-page .procedure-ledger-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: #d8ddda;
}

.hair-landing-page .procedure-ledger-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 48% center;
}

.hair-landing-page .procedure-ledger-list {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  min-width: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid #aebbb6;
  list-style: none;
}

.hair-landing-page .procedure-ledger-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  min-width: 0;
  padding: 20px 0;
  border-bottom: 1px solid #c4cdc9;
}

.hair-landing-page .procedure-ledger-list header {
  min-width: 0;
}

.hair-landing-page .procedure-ledger-list header span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 9px;
  border-radius: var(--radius-label);
  background: #2f6a5f;
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.hair-landing-page .procedure-ledger-list h3 {
  margin: 12px 0 0;
  color: #17332f;
  font: 500 clamp(20px, 1.45vw, 24px)/1.16 var(--font-display);
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.hair-landing-page .procedure-ledger-copy {
  min-width: 0;
  max-width: none;
}

.hair-landing-page .procedure-ledger-copy p {
  margin: 0;
  color: #596560;
  font-size: 14px;
  line-height: 1.62;
  text-wrap: pretty;
}

@media (max-width: 1100px) {
  .hair-landing-page .procedure-ledger {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hair-landing-page .procedure-ledger-media {
    aspect-ratio: 4 / 3;
  }

  .hair-landing-page .procedure-ledger-list {
    grid-template-rows: none;
  }
}

@media (max-width: 700px) {
  .hair-landing-page .procedure-ledger {
    gap: 28px;
  }

  .hair-landing-page .procedure-ledger-list li {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 26px 0;
  }

  .hair-landing-page .procedure-ledger-list h3 {
    margin-top: 10px;
    font-size: 21px;
  }

  .hair-landing-page .procedure-ledger-copy p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Match consultation step markers to the procedure ledger badges. */
.hair-landing-page .hair-consultation-steps span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 9px;
  border-radius: var(--radius-label);
  background: #2f6a5f;
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.hair-landing-page .hair-consultation-steps strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(21px, 1.45vw, 24px);
  line-height: 1.16;
}

.hair-landing-page .hair-consultation-steps p {
  width: 100%;
  max-width: none;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.62;
  text-wrap: pretty;
}

@media (min-width: 901px) {
  .hair-landing-page .hair-consultation-steps li,
  .hair-landing-page .hair-consultation-steps li:first-child,
  .hair-landing-page .hair-consultation-steps li:last-child {
    padding-right: clamp(20px, 1.7vw, 28px);
    padding-left: clamp(20px, 1.7vw, 28px);
  }
}

@media (max-width: 900px) {
  .hair-landing-page .hair-consultation-steps li,
  .hair-landing-page .hair-consultation-steps li:first-child,
  .hair-landing-page .hair-consultation-steps li:last-child {
    display: block;
    min-height: 0;
  }

  .hair-landing-page .hair-consultation-steps strong {
    margin-top: 12px;
  }

  .hair-landing-page .hair-consultation-steps p {
    grid-column: auto;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Use one readable type system across explanatory cards and information rows. */
.hair-landing-page .method-editorial-list dd,
.hair-landing-page .procedure-ledger-copy p,
.hair-landing-page .hair-consultation-steps p,
.hair-landing-page .decision-ledger small,
.hair-landing-page .decision-questions details p {
  width: 100%;
  max-width: none;
  font-size: 14px;
  line-height: 1.62;
  text-wrap: pretty;
}

.hair-landing-page .decision-questions summary {
  font-size: 15px;
  line-height: 1.4;
}

.hair-landing-page .decision-ledger small {
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hair-landing-page .method-editorial-list dd,
  .hair-landing-page .procedure-ledger-copy p,
  .hair-landing-page .hair-consultation-steps p,
  .hair-landing-page .decision-ledger small,
  .hair-landing-page .decision-questions details p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hair-landing-page .decision-questions summary {
    font-size: 16px;
  }
}

/* Stack FUE and FUT row labels above their explanatory text. */
.hair-landing-page .method-editorial-list dl > div {
  display: block;
  min-height: 0;
  padding: 19px 0 20px;
}

.hair-landing-page .method-editorial-list dt {
  display: block;
  margin: 0 0 8px;
}

.hair-landing-page .method-editorial-list dd {
  display: block;
  margin: 0;
}

@media (min-width: 1101px) {
  .hair-landing-page .method-editorial-list dd {
    min-height: 3.24em;
  }

  .hair-landing-page .method-editorial-list {
    align-items: stretch;
  }

  .hair-landing-page .method-editorial-list article {
    height: auto;
    min-height: 0;
  }

  .hair-landing-page .method-guidance {
    position: sticky;
    top: 112px;
    align-self: start;
    height: auto;
  }
}

/* Shared corner roles for card-like treatment-page components. */
.treatment-page .casebook-photo-field,
.treatment-page .suitability-comparison {
  overflow: hidden;
  border-radius: var(--radius-media);
}

.treatment-page .hair-consultation-steps,
.treatment-page .hair-consultation-facts,
.treatment-page .hair-procedure-steps {
  overflow: hidden;
  border-radius: var(--radius-panel);
}

.treatment-page .hair-procedure-photo > img,
.treatment-page .continuity-portrait {
  border-radius: var(--radius-media);
}

.hair-landing-page .recovery-stage-tabs,
.hair-landing-page .recovery-stage-panel {
  overflow: hidden;
  border-radius: var(--radius-panel);
}

/* Fees and practical information */
.hair-landing-page .casebook-recovery {
  padding-bottom: 0;
}

.hair-landing-page .casebook-decisions {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  background: var(--white);
}

.hair-landing-page .decision-heading {
  margin-inline: auto;
  margin-bottom: clamp(8px, 1vw, 16px);
  text-align: center;
}

.hair-landing-page .decision-heading > p:last-child {
  margin-inline: auto;
}

.hair-landing-page .decision-ledger,
.hair-landing-page .decision-questions {
  box-sizing: border-box;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid #d7dfdc;
  border-top: 3px solid var(--petrol);
  border-radius: var(--radius-panel);
  background: #f4f6f4;
}

.hair-landing-page .decision-ledger {
  padding: 0 clamp(22px, 2.4vw, 34px);
}

.hair-landing-page .decision-ledger > div {
  gap: 9px 24px;
  padding: 23px 0 24px;
  border-color: #d3dbd7;
}

.hair-landing-page .decision-ledger > div:last-child {
  border-bottom: 0;
}

.hair-landing-page .decision-ledger dt {
  align-self: center;
  color: #367064;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.hair-landing-page .decision-ledger dd {
  color: var(--petrol);
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.1;
}

.hair-landing-page .decision-ledger small {
  margin-top: 0;
  color: #65716d;
}

.hair-landing-page .decision-questions {
  padding: 0 clamp(22px, 2.6vw, 38px);
}

.hair-landing-page .decision-questions > .section-label {
  padding: 25px 0 18px;
  border-bottom: 0;
  color: #367064;
}

.hair-landing-page .decision-questions > h2 {
  max-width: 620px;
  margin: 0 0 18px;
}

.hair-landing-page .decision-questions details {
  border-color: #d3dbd7;
}

.hair-landing-page .decision-questions details:last-child {
  border-bottom: 0;
}

.hair-landing-page .decision-questions summary {
  min-height: 78px;
  gap: 24px;
  color: var(--petrol);
  font-weight: 600;
}

.hair-landing-page .decision-questions summary::after {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border: 1px solid #8fa9a2;
  border-radius: 50%;
  color: var(--petrol);
  font-size: 18px;
  line-height: 1;
}

.hair-landing-page .decision-questions details[open] summary::after {
  border-color: var(--petrol);
  background: var(--petrol);
  color: var(--white);
}

.hair-landing-page .decision-questions details p {
  margin: -2px 54px 27px 0;
  color: #5b6863;
}

@media (max-width: 900px) {
  .hair-landing-page .casebook-decisions {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 700px) {
  .hair-landing-page .casebook-decisions {
    padding-top: clamp(56px, 14vw, 76px);
  }

  .hair-landing-page .decision-heading {
    margin-bottom: 4px;
  }

  .hair-landing-page .decision-ledger,
  .hair-landing-page .decision-questions {
    padding-inline: 20px;
  }

  .hair-landing-page .decision-ledger > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hair-landing-page .decision-ledger dd {
    grid-row: 2;
    text-align: left;
  }

  .hair-landing-page .decision-ledger small {
    grid-row: 3;
  }

  .hair-landing-page .decision-questions summary {
    min-height: 74px;
  }

  .hair-landing-page .decision-questions details p {
    margin-right: 0;
  }
}

/* Give the patient film its own calm sage chapter within the results section. */
.hair-landing-page .patient-journey-video {
  position: relative;
  z-index: 0;
  padding-block: clamp(52px, 6vw, 88px);
  border-top: 0;
  color: var(--ink);
  isolation: isolate;
}

.hair-landing-page .patient-journey-video::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  background: #dce6e2;
  content: "";
  transform: translateX(-50%);
}

.hair-landing-page .patient-journey-video .section-label {
  color: #376b61;
}

.hair-landing-page .patient-journey-video > header > p {
  color: #566863;
}

.hair-landing-page .patient-journey-video video {
  box-shadow:
    0 24px 54px rgba(18, 61, 60, 0.18),
    0 8px 18px rgba(18, 61, 60, 0.1);
}

.hair-landing-page .treatment-results-showcase {
  padding-bottom: 0;
}

.hair-landing-page .patient-journey-video .treatment-results-ctas {
  padding-inline: 0;
}

.hair-landing-page .patient-journey-video .treatment-primary-cta {
  border-color: var(--petrol);
  background: var(--petrol);
  color: var(--white);
}

.hair-landing-page .patient-journey-video .treatment-text-link {
  color: var(--petrol);
}

@media (max-width: 600px) {
  .hair-landing-page .patient-journey-video {
    padding-block: 52px;
  }

  .hair-landing-page .patient-journey-video video {
    box-shadow:
      0 18px 34px rgba(18, 61, 60, 0.16),
      0 6px 14px rgba(18, 61, 60, 0.09);
  }
}

/* Centre and strengthen the review score above the patient reviews. */
.hair-landing-page .treatment-results-reviews .review-strip-heading {
  justify-content: center;
  text-align: center;
}

.hair-landing-page .treatment-results-reviews .review-strip-heading > div {
  justify-content: center;
  gap: 14px;
  color: var(--white);
  font-size: 11px;
}

.hair-landing-page .treatment-results-reviews .review-strip-heading strong {
  color: var(--white);
  font-size: 17px;
}

.hair-landing-page .treatment-results-reviews .review-strip-stars {
  color: #d8bb78;
  font-size: 15px;
}

.hair-landing-page .treatment-results-reviews .review-strip-card {
  width: clamp(390px, 32vw, 500px);
  min-height: 205px;
  gap: 18px;
  padding: 24px 26px;
  border-color: rgba(255, 255, 255, 0.72);
  background: var(--white);
}

.hair-landing-page .treatment-results-reviews .review-strip-card blockquote {
  font-size: 15px;
  line-height: 1.58;
}

.hair-landing-page .treatment-results-reviews .review-strip-card footer {
  padding-top: 14px;
  font-size: 10px;
}

.hair-landing-page .treatment-results-reviews .review-strip-card footer strong {
  font-size: 11px;
}

.hair-landing-page .patient-journey-video {
  margin-top: 14px;
}

@media (min-width: 901px) {
  .hair-landing-page .patient-journey-video figure {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .hair-landing-page .treatment-results-reviews .review-strip-heading {
    align-items: center;
  }

  .hair-landing-page .treatment-results-reviews .review-strip-heading > div {
    flex-wrap: nowrap;
  }

  .hair-landing-page .treatment-results-reviews .review-strip-card {
    width: 88vw;
    min-height: 196px;
    padding: 22px;
  }
}

/* Distinguish the surgical pricing panel from the FAQ panel. */
.hair-landing-page .decision-ledger {
  border-color: #b6c9c2;
  border-top-color: var(--petrol);
  background: #dce6e2;
  box-shadow: 0 18px 42px rgba(18, 61, 60, 0.08);
}

.hair-landing-page .decision-ledger > div {
  min-height: 132px;
  align-content: center;
  gap: 10px 24px;
  padding-block: 25px;
  border-color: #b8c9c3;
}

.hair-landing-page .decision-ledger dt {
  color: #285f55;
}

.hair-landing-page .decision-ledger dd {
  color: #173f3b;
  font-size: 19px;
}

.hair-landing-page .decision-ledger small {
  color: #536761;
}

@media (max-width: 700px) {
  .hair-landing-page .decision-ledger > div {
    min-height: 0;
    gap: 9px;
    padding-block: 24px;
  }
}

/* Keep the booking journey focused and comfortably contained on wide screens. */
.hair-landing-page .booking-layout {
  max-width: 1240px;
}

.hair-landing-page .casebook-decisions {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin-inline: 0;
  padding-inline: max(var(--page-gutter), calc((100vw - 1360px) / 2));
  background: var(--white);
}

@media (min-width: 901px) {
  .hair-landing-page .casebook-decisions {
    overflow: visible;
  }

  .hair-landing-page .decision-ledger {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    align-self: start;
  }

  .hair-landing-page .decision-ledger > div {
    box-sizing: border-box;
    min-height: 112px;
    height: 112px;
    gap: 6px 18px;
    padding-block: 18px;
  }

  .hair-landing-page .decision-ledger small {
    margin-top: 0;
  }
}

/* Group the booking introduction and practical details into one panel. */
.hair-landing-page .booking-intro {
  box-sizing: border-box;
  padding: clamp(32px, 3.2vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 48px rgba(3, 24, 23, 0.16);
}

.hair-landing-page .booking-intro .booking-facts {
  margin-top: clamp(30px, 3vw, 42px);
}

@media (min-width: 981px) {
  .hair-landing-page .booking-layout {
    gap: 24px;
  }
}

@media (min-width: 601px) {
  .hair-landing-page .booking-form-panel header {
    text-align: center;
  }

  .hair-landing-page .booking-form-panel h3,
  .hair-landing-page .booking-form-panel header > p:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  .hair-landing-page .booking-form-panel header > p:last-child {
    margin-top: 14px;
  }
}

@media (max-width: 600px) {
  .hair-landing-page .booking-intro {
    padding: 28px 22px 30px;
  }
}

.hair-landing-page .booking-field small[data-booking-format-note] {
  margin-top: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
}

/* Shared treatment typography: labels are compact; explanations and actions are readable. */
.treatment-breadcrumbs,
.treatment-fact-strip dt,
.treatment-placeholder figcaption strong,
.treatment-placeholder figcaption small,
.treatment-decision-rail > li > span,
.treatment-method-title > span,
.treatment-pathway li > span,
.treatment-method-title small,
.treatment-methods-grid dt,
.treatment-result-case > footer,
.treatment-credentials,
.treatment-timeline span,
.treatment-cost-panel dt,
.method-choice-photo figcaption,
.method-choice-photo figcaption span,
.method-choice-list dt,
.casebook-index,
.casebook-photo figcaption span,
.casebook-photo figcaption small,
.casebook-notes li > span,
.case-record-header,
.case-record-images figcaption,
.case-record-data dt,
.case-record-contact-sheet > span,
.case-record-contact-sheet > p,
.case-record-contact-sheet i,
.case-record-contact-sheet small,
.method-plane dt,
.method-plane-figure i,
.method-plane-figure b,
.method-plane-figure figcaption,
.continuity-portrait figcaption,
.continuity-path li > span,
.recovery-track article > span,
.recovery-still > div span,
.recovery-still figcaption,
.decision-ledger dt,
.patient-journey-video figcaption,
.hair-trust-band dt,
.hair-trust-band small,
.hair-consultation-steps span,
.hair-procedure-steps li > span,
.hair-consultation-facts dt,
.hair-procedure-photo figcaption,
.method-editorial-list article > header span,
.method-editorial-list dt,
.hair-landing-page .treatment-credentials small,
.hair-landing-page .recovery-facts dt,
.hair-landing-page .recovery-stage-tab span,
.suitability-comparison-state,
.suitability-comparison-controls > div,
.hair-landing-page .procedure-ledger-list header span {
  font-size: var(--text-label) !important;
}

.treatment-primary-cta,
.treatment-text-link,
.treatment-methods-grid article > a,
.method-choice-list article > a,
.method-plane-copy > a {
  font-size: 13px;
}

.treatment-decision-rail p,
.treatment-result-brief li,
.treatment-method-note,
.treatment-pathway p,
.treatment-timeline p,
.treatment-methods-grid dd,
.method-choice-list dd,
.method-choice-action p,
.casebook-notes p,
.case-record-data dd,
.method-plane dd,
.method-plane-note,
.continuity-path p,
.recovery-track p,
.recovery-risk p,
.decision-ledger small,
.recovery-patient-context,
.hair-trust-band p,
.hair-consultation-steps p,
.hair-procedure-steps p,
.hair-consultation-facts dd,
.method-editorial-list dd {
  font-size: 14px;
  line-height: 1.65;
}

.treatment-faq-list summary {
  font-size: 14px;
}

.treatment-faq-list details p,
.decision-questions details p {
  font-size: var(--text-body);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .treatment-decision-rail p,
  .treatment-result-brief li,
  .treatment-method-note,
  .treatment-pathway p,
  .treatment-timeline p,
  .treatment-methods-grid dd,
  .method-choice-list dd,
  .method-choice-action p,
  .casebook-notes p,
  .case-record-data dd,
  .method-plane dd,
  .method-plane-note,
  .continuity-path p,
  .recovery-track p,
  .recovery-risk p,
  .recovery-patient-context,
  .hair-trust-band p,
  .hair-consultation-steps p,
  .hair-procedure-steps p,
  .hair-consultation-facts dd,
  .method-editorial-list dd,
  .treatment-faq-list summary {
    font-size: 15px;
  }
}
