.condition-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 86% 18%, rgba(181,111,80,.13), transparent 25%),
    radial-gradient(circle at 74% 72%, rgba(129,155,138,.15), transparent 28%),
    linear-gradient(135deg, var(--cream), #eef3ef 58%, #f4e9db);
}
.condition-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -170px;
  bottom: -235px;
  border: 1px solid rgba(85,114,99,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(85,114,99,.035), 0 0 0 144px rgba(85,114,99,.02);
  pointer-events: none;
}
.condition-hero .page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.condition-hero h1 {
  max-width: 850px;
  font-size: clamp(52px, 7vw, 82px);
}
.condition-hero p {
  max-width: 780px;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}
.condition-hero .hero-actions { margin-top: 30px; }

.condition-hero + .section {
  padding-top: 92px;
  background: linear-gradient(180deg, #fffdf9 0, #fffdf9 72%, #fbf8f2 100%);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 78px;
  align-items: start;
}
.article-main { min-width: 0; }
.article-section {
  padding: 0 0 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.article-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.article-section h2 {
  max-width: 760px;
  margin-bottom: 24px;
}
.article-section > p {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: 17px;
}
.article-section > p + p { margin-top: 18px; }

.article-photo {
  max-width: 820px;
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 16px 38px rgba(23,50,58,.07);
}
.article-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* Make the evaluation feel like a distinct pause between symptoms and treatment. */
.article-main > .article-section:nth-child(2) {
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(129,155,138,.12), transparent 28%),
    var(--cream);
  box-shadow: 0 14px 38px rgba(23,50,58,.045);
}
.article-main > .article-section:nth-child(2) .eyebrow { margin-bottom: 14px; }
.article-main > .article-section:nth-child(2) h2 { font-size: clamp(34px, 4vw, 50px); }

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px 20px 18px 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 24px rgba(23,50,58,.035);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-50%);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.info-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}
.info-card:nth-child(1) { background: var(--sage-soft); }
.info-card:nth-child(2) { background: #f4eadc; }
.info-card:nth-child(3) { background: #fffdf9; }
.info-card h3 {
  margin-bottom: 13px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.15;
}
.info-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-top: 28px;
}
.process-flow > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}
.process-flow span {
  display: block;
  margin-bottom: 24px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}
.process-flow strong { display: block; font-size: 18px; }
.process-flow p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }

.condition-next-step {
  position: relative;
  overflow: hidden;
  padding: 38px !important;
  border: 0 !important;
  border-radius: 26px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.condition-next-step::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,.055);
}
.condition-next-step .eyebrow { color: #cfddd4; }
.condition-next-step h2 {
  position: relative;
  z-index: 1;
  max-width: 650px;
  color: white;
  font-size: clamp(34px, 4vw, 48px);
}
.condition-next-step > p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: rgba(255,255,255,.72);
}
.next-step-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0 4px;
}
.next-step-card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.055);
}
.next-step-card span {
  display: block;
  margin-bottom: 20px;
  color: #e8d6bd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.next-step-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
}
.next-step-card p {
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: 13px;
}
.condition-next-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}
.condition-next-links a {
  color: white;
  font-size: 14px;
  font-weight: 700;
}
.condition-next-links a:hover { color: #e8d6bd; }

.article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}
.aside-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 15px 40px rgba(23,50,58,.07);
}
.article-aside .aside-card:first-child {
  border-color: transparent;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.1), transparent 28%),
    linear-gradient(145deg, var(--ink), #31544e);
  color: white;
}
.article-aside .aside-card:first-child .eyebrow { color: #cfddd4; }
.article-aside .aside-card:first-child p { color: rgba(255,255,255,.7); }
.article-aside .aside-card:first-child .button {
  border-color: white;
  background: white;
  color: var(--ink);
}
.article-aside .aside-card:first-child .aside-link { color: white; }
.aside-card h3 {
  margin-bottom: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
  line-height: 1.15;
}
.aside-card p { color: var(--ink-soft); }
.aside-card .button { width: 100%; margin-top: 10px; }
.aside-link { display: inline-block; margin-top: 18px; font-weight: 700; font-size: 14px; }
.aside-soft { background: var(--cream); box-shadow: none; }

.faq-list { display: grid; gap: 12px; margin-top: 28px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.faq-item[open] {
  border-color: rgba(85,114,99,.28);
  background: #fffefa;
  box-shadow: 0 12px 30px rgba(23,50,58,.055);
}
.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 21px 56px 21px 22px;
  list-style: none;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
}

.condition-cta-generated { padding-top: 6px; }

.legal-copy { max-width: 850px; }
.legal-copy h2 { margin: 48px 0 16px; font-size: 34px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { color: var(--ink-soft); font-size: 17px; }
.legal-copy .note-box { margin-top: 42px; }

@media (max-width: 1060px) {
  .article-layout { grid-template-columns: minmax(0,1fr) 310px; gap: 52px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-card:last-child { grid-column: 1 / -1; min-height: 0; }
}

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 38px; }
  .article-aside { position: static; grid-template-columns: 1fr 1fr; }
  .process-flow { grid-template-columns: 1fr 1fr; }
  .next-step-grid { grid-template-columns: 1fr 1fr; }
  .next-step-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .condition-hero { padding: 58px 0 66px; }
  .condition-hero h1 { font-size: clamp(48px, 15vw, 66px); }
  .condition-hero + .section { padding-top: 68px; }
  .check-list,
  .info-grid,
  .article-aside,
  .process-flow,
  .next-step-grid { grid-template-columns: 1fr; }
  .info-card:last-child,
  .next-step-card:last-child { grid-column: auto; }
  .article-section { padding-bottom: 48px; margin-bottom: 48px; }
  .article-main > .article-section:nth-child(2) { padding: 26px 24px; }
  .condition-next-step { padding: 28px 24px !important; }
  .condition-next-links { display: grid; gap: 12px; }
}
