:root {
  --navy: #0b243b;
  --navy-deep: #061726;
  --ivory: #f5f2ec;
  --white-warm: #fcfbf8;
  --gold: #c89b5b;
  --ink: #17202a;
  --muted: #69737b;
  --line-dark: rgb(255 255 255 / 16%);
  --line-light: rgb(11 36 59 / 16%);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --page: min(calc(100% - 2rem), 76rem);
  --section-space: clamp(4.75rem, 11vw, 9rem);
  --shadow: 0 2rem 5rem rgb(6 23 38 / 16%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white-warm);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body,
a,
button,
summary {
  overflow-wrap: anywhere;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--navy-deep);
  background: var(--gold);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  color: var(--navy-deep);
  background: var(--white-warm);
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--page);
  min-height: 5.1rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 255 255 / 28%);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  filter: brightness(0) invert(1);
}

.brand img {
  width: 8.4rem;
  height: auto;
}

.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  color: var(--white-warm);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-action span {
  color: var(--gold);
  font-size: 1rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(47rem, 100svh);
  color: var(--white-warm);
  background: var(--navy-deep);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(6 23 38 / 18%) 0%, rgb(6 23 38 / 16%) 28%, rgb(6 23 38 / 88%) 63%, var(--navy-deep) 100%),
    linear-gradient(90deg, rgb(6 23 38 / 10%), transparent 65%);
  content: "";
}

.hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
}

.hero-image::after {
  position: absolute;
  right: 1.3rem;
  bottom: 8.7rem;
  width: min(44vw, 10rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.82) contrast(1.04);
}

.art-signature {
  position: absolute;
  right: 1rem;
  bottom: 9.25rem;
  margin: 0;
  color: var(--white-warm);
  font-family: var(--display);
  font-size: clamp(1rem, 5vw, 1.45rem);
  font-style: italic;
  line-height: 1;
  text-align: right;
}

.art-signature span {
  display: block;
  color: rgb(252 251 248 / 76%);
  font-family: var(--body);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy {
  align-self: end;
  width: var(--page);
  padding: 8.5rem 0 5.5rem;
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  margin: 0 0 1.25rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 1.75rem;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow span {
  opacity: 0.7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.05rem;
  font-size: clamp(2.85rem, 12.6vw, 5rem);
  line-height: 0.93;
  text-wrap: balance;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 1.5rem;
  color: rgb(252 251 248 / 82%);
  font-size: clamp(0.92rem, 3.6vw, 1.05rem);
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.button:hover span {
  transform: translate(0.18rem, -0.18rem);
}

.button-gold {
  color: var(--navy-deep);
  background: var(--gold);
}

.button-gold:hover {
  background: #d8ae73;
}

.button-navy {
  color: var(--white-warm);
  background: var(--navy);
}

.button-navy:hover {
  background: var(--navy-deep);
}

.google-proof {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.4rem 0;
  color: var(--white-warm);
  font-size: 0.76rem;
  line-height: 1.2;
  text-decoration: none;
}

.stars {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.google-proof strong,
.google-proof small {
  display: block;
}

.google-proof strong {
  font-size: 0.75rem;
  font-weight: 700;
}

.google-proof small {
  margin-top: 0.14rem;
  color: rgb(252 251 248 / 62%);
  font-size: 0.64rem;
}

.medical-id {
  display: grid;
  gap: 0.18rem;
  padding-top: 1.2rem;
  margin: 0;
  border-top: 1px solid var(--line-dark);
  color: rgb(252 251 248 / 64%);
  font-size: 0.61rem;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
}

.medical-id strong {
  color: var(--white-warm);
  font-size: 0.66rem;
}

.medical-id span span,
.medical-id strong span {
  color: var(--gold);
}

.hero-scroll {
  display: none;
}

.authority {
  position: relative;
  z-index: 2;
  width: 100%;
  color: var(--white-warm);
  background: var(--navy);
}

.authority-intro,
.authority-items {
  width: var(--page);
  margin-right: auto;
  margin-left: auto;
}

.authority-intro {
  padding: 2.3rem 0 1.6rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgb(252 251 248 / 72%);
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.1;
}

.authority-items {
  display: grid;
  padding: 0.75rem 0 1.75rem;
}

.authority-items p {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  padding: 0.9rem 0;
  margin: 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.69rem;
  line-height: 1.35;
}

.authority-items p:last-child {
  border-bottom: 0;
}

.authority-items span {
  color: rgb(252 251 248 / 48%);
}

.authority-items strong {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.procedures,
.trust,
.consultation {
  width: var(--page);
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  margin: 0 auto;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 3.25rem;
}

.section-heading h2,
.trust-intro h2,
.final-card h2 {
  margin-bottom: 1.2rem;
  color: var(--navy);
  font-size: clamp(2.65rem, 10vw, 5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > p:last-child,
.trust-intro > p {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.procedure-index {
  border-top: 1px solid var(--navy);
}

.procedure-index article {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 0.65rem;
  padding: 1.75rem 0 1.9rem;
  border-bottom: 1px solid var(--line-light);
}

.procedure-number {
  padding-top: 0.38rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.procedure-index h3 {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.procedure-index p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.procedure-close {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 0;
}

.procedure-close p {
  max-width: 42rem;
  margin: 0;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 600;
}

.text-link,
.source-link,
.instagram-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.4rem;
  text-transform: uppercase;
}

.text-link span,
.source-link span,
.instagram-link span {
  color: var(--gold);
}

.care {
  position: relative;
  padding: var(--section-space) max(1rem, calc((100vw - 76rem) / 2));
  color: var(--white-warm);
  background:
    linear-gradient(130deg, rgb(200 155 91 / 8%), transparent 42%),
    var(--navy-deep);
  overflow: hidden;
}

.care::after {
  position: absolute;
  right: -10rem;
  bottom: -14rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgb(200 155 91 / 16%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.care-statement {
  position: relative;
  z-index: 1;
}

.care-statement h2 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.45rem, 9.5vw, 5rem);
  line-height: 0.98;
}

.care-statement > p:last-child {
  max-width: 37rem;
  margin-bottom: 3.4rem;
  color: rgb(252 251 248 / 68%);
  font-size: 0.9rem;
}

.care-path {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

.care-path li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1.5rem 0 1.6rem;
  border-top: 1px solid var(--line-dark);
}

.care-path > li > span {
  padding-top: 0.35rem;
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.care-path h3 {
  margin-bottom: 0.45rem;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.care-path p {
  margin: 0;
  color: rgb(252 251 248 / 62%);
  font-size: 0.82rem;
}

.trust {
  display: grid;
  gap: 3rem;
}

.trust-intro {
  max-width: 42rem;
}

.source-link {
  margin-top: 1.25rem;
}

.review-composition {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.review {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.review-mark {
  position: absolute;
  top: 1.15rem;
  right: 0;
  color: rgb(200 155 91 / 30%);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
}

.review blockquote {
  position: relative;
  max-width: 27rem;
  margin: 0 2.5rem 1.25rem 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.7rem, 6.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
}

.review p {
  margin: 0;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review p span {
  color: var(--gold);
}

.doctor-note {
  display: grid;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.doctor-note-image {
  min-height: 24rem;
  overflow: hidden;
}

.doctor-note-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 19%;
  filter: saturate(0.82) contrast(1.02);
}

.doctor-note-copy {
  padding: 2.3rem 1.35rem 2.5rem;
}

.doctor-note-copy h3 {
  margin-bottom: 1.15rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2rem, 7.5vw, 3rem);
  font-weight: 600;
  line-height: 1.02;
}

.doctor-note-copy > p:not(.eyebrow) {
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.trust-actions {
  display: grid;
  gap: 0.65rem;
}

.instagram-link {
  justify-self: center;
}

.consultation {
  display: grid;
  gap: 3.5rem;
  padding-top: 0;
}

.faq-list {
  border-top: 1px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: grid;
  min-height: 70px;
  grid-template-columns: minmax(0, 1fr) 1.5rem;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--gold);
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 38rem;
  padding: 0 2.5rem 1.25rem 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.final-card {
  position: relative;
  padding: 3rem 1.35rem;
  color: var(--white-warm);
  background: var(--navy);
  overflow: hidden;
}

.final-card::after {
  position: absolute;
  top: -7rem;
  right: -7rem;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgb(200 155 91 / 20%);
  border-radius: 50%;
  content: "";
}

.final-card .eyebrow,
.final-card h2,
.final-card > p,
.final-card .button,
.final-id {
  position: relative;
  z-index: 1;
}

.final-card h2 {
  color: var(--white-warm);
}

.final-card > p:not(.eyebrow) {
  margin-bottom: 1.7rem;
  color: rgb(252 251 248 / 68%);
  font-size: 0.9rem;
}

.final-card .button {
  width: 100%;
}

.final-id {
  display: grid;
  gap: 0.2rem;
  padding-top: 1.4rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: rgb(252 251 248 / 58%);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.final-id strong {
  color: var(--white-warm);
  font-size: 0.66rem;
}

.final-id span span,
.final-id strong span {
  color: var(--gold);
}

.site-footer {
  display: grid;
  width: var(--page);
  gap: 0.55rem;
  padding: 2.3rem 0 6.5rem;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  color: var(--navy);
}

.sticky-cta {
  position: fixed;
  z-index: 20;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  box-shadow: 0 0.8rem 2rem rgb(6 23 38 / 28%);
}

.sticky-cta[hidden] {
  display: none;
}

.sticky-cta .button {
  width: 100%;
}

@media (min-width: 30rem) {
  .hero-actions {
    grid-template-columns: minmax(13rem, 1fr) auto;
    align-items: center;
  }

  .google-proof {
    justify-content: flex-start;
  }

  .medical-id {
    grid-template-columns: auto 1fr;
    column-gap: 0.8rem;
    align-items: center;
  }
}

@media (min-width: 45rem) {
  :root {
    --page: min(calc(100% - 4rem), 76rem);
  }

  .site-header {
    min-height: 6.25rem;
  }

  .brand img {
    width: 10.5rem;
  }

  .header-action {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 52rem;
  }

  .hero-copy {
    padding-bottom: 6.5rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .authority-intro,
  .authority-items {
    width: var(--page);
  }

  .authority-intro {
    font-size: 1.8rem;
  }

  .authority-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
  }

  .authority-items p:nth-child(3) {
    border-bottom: 0;
  }

  .procedure-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .procedure-index article:nth-child(odd) {
    padding-right: 2rem;
    border-right: 1px solid var(--line-light);
  }

  .procedure-index article:nth-child(even) {
    padding-left: 2rem;
  }

  .procedure-close {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .care-path {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--line-dark);
  }

  .care-path li {
    display: block;
    padding: 2rem 1.7rem 2.2rem 0;
  }

  .care-path li + li {
    padding-left: 1.7rem;
    border-left: 1px solid var(--line-dark);
  }

  .care-path > li > span {
    display: block;
    margin-bottom: 2.5rem;
  }

  .review-composition {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review {
    padding: 2.5rem;
  }

  .review-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line-light);
  }

  .review-featured blockquote {
    font-size: 3rem;
  }

  .review-mark {
    top: 1.6rem;
    right: 1.5rem;
  }

  .doctor-note {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .doctor-note-image {
    min-height: 36rem;
  }

  .doctor-note-copy {
    display: flex;
    padding: 4rem clamp(2.5rem, 6vw, 5rem);
    flex-direction: column;
    justify-content: center;
  }

  .trust-actions {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .instagram-link {
    justify-self: start;
  }

  .final-card {
    padding: 4rem;
  }

  .final-card .button {
    width: auto;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2.3rem;
  }

  .sticky-cta {
    right: 1.25rem;
    bottom: 1.25rem;
    left: auto;
    width: 15.5rem;
  }
}

@media (min-width: 64rem) {
  .site-header {
    border-color: rgb(255 255 255 / 22%);
  }

  .hero {
    min-height: 50rem;
    grid-template-columns: 56% 44%;
    background: var(--navy-deep);
  }

  .hero::before {
    position: absolute;
    z-index: 1;
    top: 6.25rem;
    bottom: 0;
    left: 56%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgb(200 155 91 / 68%) 30%, rgb(200 155 91 / 30%) 75%, transparent);
    content: "";
  }

  .hero::after {
    background: linear-gradient(90deg, var(--navy-deep) 0 48%, rgb(6 23 38 / 94%) 55%, rgb(6 23 38 / 18%) 74%, rgb(6 23 38 / 8%) 100%);
  }

  .hero-image {
    left: 42%;
  }

  .hero-image img {
    object-position: 52% 14%;
  }

  .hero-image::after {
    right: 3rem;
    bottom: 4.3rem;
    width: 12rem;
  }

  .art-signature {
    right: 3rem;
    bottom: 4.75rem;
    font-size: 1.6rem;
  }

  .hero-copy {
    align-self: center;
    padding: 8.8rem 0 4rem;
  }

  .hero-copy > * {
    max-width: 36rem;
  }

  h1 {
    max-width: 11.7ch;
    font-size: clamp(4.35rem, 6vw, 5.5rem);
  }

  .hero-lead {
    max-width: 33rem;
  }

  .hero-actions {
    max-width: 32rem;
  }

  .medical-id {
    max-width: 33rem;
  }

  .hero-scroll {
    position: absolute;
    z-index: 2;
    bottom: 1.6rem;
    left: max(2rem, calc((100vw - 76rem) / 2));
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 0.9rem;
    color: rgb(252 251 248 / 48%);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .hero-scroll span:last-child {
    color: var(--gold);
    font-size: 1rem;
  }

  .authority {
    display: grid;
    grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 2.25fr);
    align-items: stretch;
    padding-right: max(2rem, calc((100vw - 76rem) / 2));
    padding-left: max(2rem, calc((100vw - 76rem) / 2));
  }

  .authority-intro,
  .authority-items {
    width: auto;
    margin: 0;
  }

  .authority-intro {
    display: flex;
    padding: 2.2rem 2.2rem 2.2rem 0;
    align-items: center;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .authority-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 0 0 2.2rem;
  }

  .authority-items p {
    display: flex;
    padding: 2.2rem 1rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.55rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .authority-items p:last-child {
    border-right: 0;
  }

  .procedures {
    display: grid;
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(4rem, 8vw, 8rem);
  }

  .section-heading {
    position: sticky;
    top: 7rem;
    align-self: start;
    margin-bottom: 0;
  }

  .procedures .procedure-close {
    grid-column: 2;
  }

  .procedure-index article:nth-child(odd),
  .procedure-index article:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .procedure-index {
    display: block;
  }

  .procedure-index article {
    grid-template-columns: 3rem minmax(0, 1fr);
    padding: 2rem 0 2.15rem;
  }

  .procedure-index h3 {
    font-size: 2.3rem;
  }

  .care {
    display: grid;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(4rem, 9vw, 9rem);
    align-items: end;
  }

  .care-statement > p:last-child {
    margin-bottom: 0;
  }

  .care-path {
    display: block;
    border-bottom: 0;
  }

  .care-path li,
  .care-path li + li {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    padding: 1.7rem 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .care-path > li > span {
    margin: 0;
  }

  .trust {
    grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(4rem, 8vw, 8rem);
    align-items: start;
  }

  .trust-intro {
    position: sticky;
    top: 7rem;
  }

  .review-composition {
    grid-column: 2;
  }

  .doctor-note {
    grid-column: 1 / -1;
    margin-top: 2rem;
  }

  .doctor-note-image {
    min-height: 42rem;
  }

  .consultation {
    grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
    gap: clamp(4rem, 8vw, 8rem);
    align-items: start;
  }

  .final-card {
    position: sticky;
    top: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
