:root {
  --ink: #173b37;
  --ink-deep: #0d2f2c;
  --cream: #f4f0e7;
  --paper: #fbfaf6;
  --white: #ffffff;
  --mint: #b8d7cb;
  --mint-soft: #e1eee8;
  --lime: #d8ef8d;
  --coral: #e98670;
  --sand: #decdb9;
  --muted: #60736f;
  --line: rgba(23, 59, 55, 0.16);
  --shadow: 0 24px 70px rgba(25, 54, 49, 0.12);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.eyebrow--light {
  color: var(--mint);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--ink-deep);
}

.button--small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.78rem;
}

.button--ghost {
  background: transparent;
  color: var(--ink);
}

.button--ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.button--cream {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.button--cream:hover {
  background: var(--lime);
  color: var(--ink-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(23, 59, 55, 0.08);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}

.brand__mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 14px 14px 14px 3px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.brand--light {
  color: var(--white);
}

.brand--light .brand__mark {
  background: var(--lime);
  color: var(--ink-deep);
}

.brand--light small {
  color: var(--mint);
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  padding-block: 6px;
  font-size: 0.8rem;
  font-weight: 750;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
}

/* Home hero */
.hero {
  overflow: hidden;
  padding: 74px 0 84px;
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 239, 141, 0.34), transparent 27%),
    linear-gradient(115deg, var(--cream) 0 66%, #d8e6df 66% 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: 82px;
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 26px;
  font-family: var(--serif);
  font-size: clamp(4rem, 6.3vw, 6.9rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  color: #435f5b;
  font-family: var(--serif);
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
  line-height: 1.52;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__trust {
  display: grid;
  max-width: 690px;
  margin-top: 52px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero__trust div {
  display: flex;
  padding: 24px 18px 0 0;
  align-items: flex-start;
  gap: 10px;
}

.hero__trust div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero__trust strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
}

.hero__trust span {
  max-width: 120px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.88;
  border-radius: 160px 160px 24px 24px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 47, 44, 0.54), transparent 44%);
  content: "";
}

.hero__image-label {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 30px;
  left: 28px;
  color: var(--white);
}

.hero__image-label span,
.hero__image-label strong {
  display: block;
}

.hero__image-label span {
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__image-label strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
}

.hero__note {
  position: absolute;
  right: -54px;
  bottom: 68px;
  display: flex;
  width: 250px;
  padding: 22px;
  align-items: flex-start;
  gap: 12px;
  border-radius: 4px 24px 24px 24px;
  background: var(--lime);
  box-shadow: var(--shadow);
}

.hero__note > span {
  font-size: 1.35rem;
}

.hero__note p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.45;
}

.principles-band {
  background: var(--ink);
  color: var(--white);
}

.principles-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principles-band p {
  display: flex;
  min-height: 108px;
  margin: 0;
  padding: 28px;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.3;
}

.principles-band p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.principles-band span {
  color: var(--lime);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* Sections and cards */
.section-heading {
  display: flex;
  margin-bottom: 54px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading > div {
  max-width: 760px;
}

.section-heading h2 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.99;
}

.section-heading p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.treatment-section {
  background: var(--paper);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.treatment-card {
  display: flex;
  min-height: 320px;
  padding: 32px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, transform 200ms ease;
}

.treatment-card:hover {
  z-index: 1;
  background: var(--mint-soft);
  transform: translateY(-5px);
}

.treatment-card > span {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 850;
}

.treatment-card h3 {
  max-width: 290px;
  margin: 34px 0 16px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.treatment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.treatment-card strong {
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.decision-section {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  background: var(--ink-deep);
  color: var(--white);
}

.decision-section::after {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(216, 239, 141, 0.18);
  border-radius: 50%;
  content: "";
}

.decision-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 100px;
}

.decision-section h2 {
  margin: 18px 0 26px;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.7vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.decision-section p {
  margin: 0 0 34px;
  color: #bed0ca;
  font-size: 1rem;
}

.decision-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.decision-list a {
  display: grid;
  min-height: 105px;
  padding: 23px 8px;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 180ms ease, color 180ms ease;
}

.decision-list a:hover {
  padding-inline: 18px;
  color: var(--lime);
}

.decision-list > a > span {
  color: var(--mint);
  font-size: 0.66rem;
  font-weight: 800;
}

.decision-list strong,
.decision-list small {
  display: block;
}

.decision-list strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
}

.decision-list small {
  margin-top: 5px;
  color: #96afa8;
  font-size: 0.75rem;
}

.decision-list b {
  font-size: 1rem;
}

.team-section {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  overflow: hidden;
  border-radius: 3px 3px 26px 3px;
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-card__image {
  overflow: hidden;
  aspect-ratio: 0.87;
  background: var(--mint-soft);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.team-card:hover img {
  transform: scale(1.035);
}

.team-card > div:last-child {
  padding: 24px;
}

.team-card span {
  color: var(--coral);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.team-card p {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.team-card strong {
  display: block;
  margin-top: 22px;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stories-section {
  background: var(--paper);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stories-grid figure {
  display: flex;
  min-height: 330px;
  margin: 0;
  padding: 34px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 2px 30px 2px 2px;
  background: var(--white);
}

.stories-grid figure:nth-child(2) {
  background: var(--mint-soft);
}

.stories-grid figure > div {
  color: var(--coral);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.stories-grid blockquote {
  margin: 34px 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.stories-grid figcaption {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 800;
}

.visit-section {
  padding-block: 112px;
  background: var(--sand);
}

.visit-section__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 100px;
}

.visit-section h2 {
  margin: 18px 0 24px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.visit-section > .shell > div > p {
  max-width: 640px;
  margin: 0 0 30px;
  color: #4d625e;
}

.visit-card {
  overflow: hidden;
  padding: 10px 34px 32px;
  border-radius: 90px 90px 8px 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.visit-card div {
  display: grid;
  padding: 25px 4px;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.visit-card span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-card strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}

.visit-card > a {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  padding: 80px 0 26px;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.75fr 1fr;
  gap: 55px;
}

.footer-grid > div:first-child p {
  max-width: 340px;
  margin: 24px 0 0;
  color: #99b0aa;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.footer-grid h2 {
  margin: 4px 0 18px;
  color: var(--lime);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid > div > a {
  display: block;
  margin: 0 0 11px;
  color: #a9bdb8;
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-grid > div > a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  margin-top: 64px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p,
.footer-bottom a {
  color: #819b95;
  font-size: 0.65rem;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 48px;
  padding: 10px 18px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(13, 47, 44, 0.25);
  font-size: 0.74rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  background: var(--coral);
  transform: translateY(-3px);
}

/* Library */
.library-hero {
  padding: 90px 0 82px;
  background:
    radial-gradient(circle at 87% 5%, rgba(216, 239, 141, 0.5), transparent 26%),
    var(--cream);
}

.library-hero__inner {
  max-width: 950px;
  text-align: center;
}

.library-hero h1 {
  margin: 18px auto 24px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.6vw, 7.1rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.library-hero p {
  max-width: 730px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.library-section {
  padding-top: 70px;
}

.explorer__search {
  max-width: 820px;
  margin: 0 auto 32px;
}

.explorer__search label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.explorer__search > div {
  display: flex;
  min-height: 64px;
  padding: 0 22px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 45px rgba(23, 59, 55, 0.07);
}

.explorer__search span {
  color: var(--muted);
  font-size: 1.5rem;
}

.explorer__search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}

.explorer__audience,
.explorer__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.explorer__audience {
  margin-bottom: 12px;
}

.explorer__audience button,
.explorer__categories button {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease, border 160ms ease;
}

.explorer__audience button.is-active,
.explorer__categories button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.explorer__count {
  margin: 42px 0 20px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.page-card {
  display: flex;
  min-height: 300px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 2px 26px 2px 2px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.page-card:hover {
  background: var(--mint-soft);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.page-card .eyebrow {
  font-size: 0.57rem;
}

.page-card h3 {
  margin: 24px 0 15px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.page-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.page-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.62rem;
}

.page-card--compact {
  min-height: 220px;
}

.empty-state {
  padding: 70px 24px;
  border: 1px dashed var(--line);
  border-radius: 24px;
  text-align: center;
}

.empty-state h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.empty-state p {
  margin: 8px 0 0;
  color: var(--muted);
}

/* Article */
.article-hero {
  overflow: hidden;
  padding: 38px 0 86px;
  background:
    radial-gradient(circle at 88% 36%, rgba(216, 239, 141, 0.48), transparent 25%),
    linear-gradient(135deg, var(--cream), #e1ebe5);
}

.breadcrumbs {
  display: flex;
  overflow: hidden;
  margin-bottom: 60px;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.breadcrumbs > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.breadcrumbs [aria-current="page"] {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: end;
  gap: 80px;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.article-hero__meta > span:last-child {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.article-hero h1 {
  max-width: 980px;
  margin: 21px 0 24px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.2vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.064em;
  line-height: 0.94;
}

.article-hero__grid > div:first-child > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.22rem;
}

.article-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.article-hero__stamp {
  display: grid;
  width: 190px;
  height: 190px;
  place-content: center;
  border: 1px solid rgba(23, 59, 55, 0.25);
  border-radius: 50%;
  text-align: center;
  transform: rotate(6deg);
}

.article-hero__stamp span {
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 0.8;
}

.article-hero__stamp small {
  margin-top: 14px;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.article-hero--profile .article-hero__grid {
  grid-template-columns: minmax(0, 1fr) 330px;
}

.profile-portrait {
  overflow: hidden;
  aspect-ratio: 0.9;
  border-radius: 110px 110px 8px 8px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.profile-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  padding-block: 90px 120px;
  grid-template-columns: 200px minmax(0, 760px);
  justify-content: center;
  gap: 80px;
}

.article-aside {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 2px 20px 2px 2px;
  background: var(--white);
}

.article-aside > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.article-aside span,
.article-aside strong {
  display: block;
}

.article-aside span {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-aside strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25;
}

.article-aside > a {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-body {
  min-width: 0;
  color: #2c4945;
  font-size: 1.03rem;
  line-height: 1.78;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.article-body h2 {
  margin: 68px 0 22px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.article-body h3 {
  margin: 42px 0 15px;
  font-size: 1.75rem;
  line-height: 1.16;
}

.article-body h4 {
  margin: 28px 0 10px;
  font-size: 1.22rem;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body > blockquote:first-child,
.article-body blockquote {
  margin: 0 0 34px;
  padding: 25px 28px;
  border: 0;
  border-left: 4px solid var(--coral);
  border-radius: 0 18px 18px 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
}

.article-body blockquote p:last-child {
  margin-bottom: 0;
}

.article-body strong {
  color: var(--ink);
}

.article-body a {
  color: #246a61;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(36, 106, 97, 0.35);
  text-underline-offset: 3px;
}

.article-body a:hover {
  text-decoration-color: var(--coral);
}

.article-body a[href*="wa.me"] {
  display: inline-flex;
  min-height: 48px;
  margin: 8px 0 14px;
  padding: 10px 20px;
  align-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  text-decoration: none;
}

.article-body ul,
.article-body ol {
  margin: 12px 0 26px;
  padding-left: 1.4em;
}

.article-body li {
  margin-bottom: 9px;
  padding-left: 6px;
}

.article-body li::marker {
  color: var(--coral);
  font-weight: 800;
}

.article-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 32px 0;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.article-body th,
.article-body td {
  min-width: 150px;
  padding: 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--ink);
  color: var(--white);
}

.article-body tr:nth-child(even) td {
  background: var(--cream);
}

.article-body hr {
  margin: 54px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.article-cta {
  padding-block: 70px;
  background: var(--ink);
  color: var(--white);
}

.article-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.article-cta h2 {
  margin: 14px 0 8px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.article-cta p {
  margin: 0;
  color: var(--mint);
}

.related-section {
  background: var(--cream);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero__grid {
    gap: 50px;
  }

  .hero__note {
    right: -20px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }

  .team-card__image {
    aspect-ratio: auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 32px, 720px);
  }

  .section {
    padding-block: 82px;
  }

  .desktop-nav,
  .site-header__inner > .button {
    display: none;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 800;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 50px;
    right: 0;
    display: grid;
    width: min(300px, calc(100vw - 32px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
    font-weight: 750;
  }

  .mobile-menu nav a:last-child {
    margin-top: 6px;
    border: 0;
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
    text-align: center;
  }

  .hero {
    padding-top: 56px;
    background: var(--cream);
  }

  .hero__grid,
  .decision-section__grid,
  .visit-section__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 62px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 13vw, 6rem);
  }

  .hero__visual {
    max-width: 560px;
    margin-inline: auto;
  }

  .hero__image-wrap {
    aspect-ratio: 1.08;
    border-radius: 130px 130px 22px 22px;
  }

  .hero__note {
    right: -4px;
  }

  .principles-band__grid,
  .treatment-grid,
  .stories-grid,
  .card-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles-band p:nth-child(3) {
    border-left: 0;
  }

  .principles-band p:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .treatment-grid {
    border-top: 0;
  }

  .decision-section__grid,
  .visit-section__grid {
    gap: 62px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .article-hero__grid,
  .article-hero--profile .article-hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-hero__stamp {
    display: none;
  }

  .profile-portrait {
    width: min(330px, 80vw);
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    align-items: center;
    gap: 18px;
  }

  .article-aside > div {
    padding: 0 18px 0 0;
    border: 0;
    border-right: 1px solid var(--line);
  }

  .article-aside > a {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 560px);
  }

  .section {
    padding-block: 66px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 46px 0 64px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: clamp(3.35rem, 17.3vw, 5.5rem);
    letter-spacing: -0.07em;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    margin-top: 38px;
    grid-template-columns: 1fr;
  }

  .hero__trust div {
    padding: 15px 0;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .hero__trust div + div {
    padding-left: 0;
    border-left: 0;
  }

  .hero__trust span {
    max-width: none;
  }

  .hero__image-wrap {
    aspect-ratio: 0.95;
    border-radius: 95px 95px 20px 20px;
  }

  .hero__note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 32px);
    margin: -28px auto 0;
  }

  .principles-band__grid,
  .treatment-grid,
  .stories-grid,
  .card-grid--three,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .principles-band p,
  .principles-band p:nth-child(3) {
    min-height: 82px;
    padding: 20px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .section-heading {
    margin-bottom: 36px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .section-heading h2 {
    font-size: 3rem;
  }

  .treatment-card {
    min-height: 290px;
    padding: 28px;
  }

  .decision-section {
    padding-block: 74px;
  }

  .decision-section h2 {
    font-size: 3.1rem;
  }

  .decision-list a {
    min-height: 94px;
    grid-template-columns: 28px 1fr auto;
    gap: 12px;
  }

  .decision-list small {
    display: none;
  }

  .team-card {
    display: block;
  }

  .team-card__image {
    aspect-ratio: 1.05;
  }

  .stories-grid figure {
    min-height: 285px;
  }

  .visit-section {
    padding-block: 74px;
  }

  .visit-section h2 {
    font-size: 3.3rem;
  }

  .visit-card {
    padding: 10px 24px 26px;
    border-radius: 66px 66px 8px 8px;
  }

  .visit-card div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-bottom,
  .article-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .library-hero {
    padding: 62px 0;
  }

  .library-hero h1 {
    font-size: 3.75rem;
  }

  .explorer__categories {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .explorer__categories button {
    flex: 0 0 auto;
  }

  .page-card {
    min-height: 270px;
  }

  .article-hero {
    padding: 24px 0 64px;
  }

  .breadcrumbs {
    margin-bottom: 42px;
  }

  .article-hero h1 {
    font-size: clamp(3.35rem, 16vw, 5.2rem);
  }

  .article-hero__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .article-hero__meta > span:last-child {
    padding-left: 0;
    border-left: 0;
  }

  .article-hero__actions .button {
    width: 100%;
  }

  .article-layout {
    padding-block: 56px 78px;
  }

  .article-aside {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-aside > div {
    padding-right: 0;
    border-right: 0;
  }

  .article-aside > a {
    grid-column: 1 / -1;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .article-body {
    font-size: 0.98rem;
  }

  .article-body h2 {
    margin-top: 56px;
    font-size: 2.45rem;
  }

  .article-body h3 {
    font-size: 1.58rem;
  }

  .article-body blockquote {
    padding: 21px;
    font-size: 1.08rem;
  }

  .article-cta {
    padding-block: 58px;
  }

  .article-cta__inner {
    gap: 30px;
  }

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

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
