:root {
  --ink: #29433d;
  --ink-2: #3a5d55;
  --ink-3: #66847a;
  --ice: #eef3ef;
  --paper: #fbfaf6;
  --white: #ffffff;
  --coral: #ea7c6a;
  --coral-dark: #cf6657;
  --coral-soft: #f6e3dd;
  --sage: #91aa9f;
  --line: rgba(41, 67, 61, 0.14);
  --line-light: rgba(255, 255, 255, 0.15);
  --text: #3e514c;
  --muted: #71807b;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-accent: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(41, 67, 61, 0.10);
  --radius: 2px;
  --header-height: 84px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--font-display); line-height: 1.08; }
h1 { font-size: clamp(3rem, 7.4vw, 7rem); font-weight: 500; letter-spacing: -0.045em; }
h2 { font-size: clamp(2.45rem, 4.7vw, 4.8rem); font-weight: 500; letter-spacing: -0.035em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 500; }
em { color: var(--coral); font-weight: inherit; }

.wrap { width: min(100% - 48px, 1240px); margin-inline: auto; }
.wrap--article { width: min(100% - 48px, 780px); }
.section { position: relative; padding: clamp(88px, 10vw, 150px) 0; }
.section--ice { background: var(--ice); }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
  z-index: 100000; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  padding: 10px 16px; margin: 0; background: var(--white); color: var(--ink); border-radius: 3px;
}
:focus-visible { outline: 2px solid var(--coral); outline-offset: 4px; }

.eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
  color: var(--coral-dark); font-family: var(--font-accent); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.18em; line-height: 1.3; text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow--light { color: #f3a397; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 15px 27px;
  border: 1px solid var(--coral); background: var(--coral); color: var(--ink); text-decoration: none;
  font-family: var(--font-accent); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  line-height: 1.2; text-transform: uppercase; transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { background: var(--white); border-color: var(--white); color: var(--ink); transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 12px 18px; font-size: .67rem; }
.text-link {
  display: inline-flex; align-items: center; gap: 14px; color: var(--white); font-family: var(--font-accent);
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase;
}
.text-link span { color: var(--coral); font-size: 1.15rem; transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px,-3px); }
.text-link--dark { color: var(--ink); }
.reveal { opacity: 1; transform: none; }
.reveal.will-reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.will-reveal.is-visible { opacity: 1; transform: none; }

/* Header */
.site-header {
  position: fixed; z-index: 900; inset: 0 0 auto; height: var(--header-height);
  border-bottom: 1px solid transparent; color: var(--white); transition: background .3s ease, border-color .3s ease, height .3s ease;
}
.site-header.is-scrolled { height: 70px; background: rgba(16,26,34,.95); border-color: var(--line-light); backdrop-filter: blur(16px); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.site-brand { display: block; width: 158px; line-height: 0; text-decoration: none; }
.site-brand img, .site-brand .custom-logo { width: 158px; height: auto; }
.custom-logo-link { display: block; }
.primary-navigation { display: flex; align-items: center; gap: 30px; }
.primary-navigation .menu, .site-footer .menu { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.primary-navigation .menu-item { position: relative; }
.primary-navigation .menu a {
  color: rgba(255,255,255,.77); font-family: var(--font-accent); font-size: .7rem; font-weight: 500;
  letter-spacing: .07em; text-decoration: none; text-transform: uppercase; transition: color .2s ease;
}
.primary-navigation .menu a:hover, .primary-navigation .current-menu-item > a { color: var(--white); }
.primary-navigation .sub-menu {
  position: absolute; top: calc(100% + 18px); left: -18px; min-width: 210px; margin: 0; padding: 12px 0;
  background: var(--ink); border: 1px solid var(--line-light); list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s ease;
}
.primary-navigation li:hover > .sub-menu, .primary-navigation li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.primary-navigation .sub-menu a { display: block; padding: 9px 18px; }
.menu-toggle { display: none; width: 45px; height: 45px; padding: 0; border: 0; background: transparent; }
.menu-toggle > span:not(.screen-reader-text) { display: block; width: 25px; height: 1px; margin: 7px auto; background: currentColor; transition: .25s ease; }

/* Hero */
.hero {
  position: relative; min-height: max(720px, 100svh); padding: calc(var(--header-height) + 68px) 0 78px;
  overflow: hidden; background: var(--ink); color: var(--white);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);
  background-size: 80px 80px; mask-image: linear-gradient(to right, black, transparent 72%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero__glow--one { width: 440px; height: 440px; right: 4%; top: 13%; background: radial-gradient(circle, rgba(239,112,95,.2), transparent 68%); }
.hero__glow--two { width: 330px; height: 330px; right: 27%; bottom: -10%; background: radial-gradient(circle, rgba(158,174,164,.11), transparent 70%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.16fr) minmax(420px,.84fr); gap: 48px; align-items: center; min-height: calc(100svh - 230px); }
.hero__content { max-width: 735px; padding-bottom: 18px; }
.hero h1 { margin-bottom: 30px; color: var(--white); }
.hero h1 em { display: block; }
.hero__lead { max-width: 680px; margin-bottom: 13px; color: #f4f3ef; font-size: clamp(1.2rem,1.6vw,1.55rem); font-weight: 300; line-height: 1.5; }
.hero__support { max-width: 610px; margin-bottom: 36px; color: rgba(255,255,255,.57); font-size: .96rem; font-weight: 300; }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-bottom: 52px; }
.hero__trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; max-width: 670px; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.hero__trust li { padding: 20px 20px 0 0; }
.hero__trust li + li { padding-left: 20px; border-left: 1px solid var(--line-light); }
.hero__trust strong, .hero__trust span { display: block; }
.hero__trust strong { color: var(--white); font-family: var(--font-accent); font-size: .76rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.hero__trust span { margin-top: 3px; color: rgba(255,255,255,.43); font-size: .75rem; }
.hero__visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.hero__orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.hero__orbit::before { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 24px var(--coral); }
.hero__orbit--outer { inset: 2%; animation: spin 26s linear infinite; }
.hero__orbit--outer::before { left: 17%; top: 8%; }
.hero__orbit--inner { inset: 16%; border-style: dashed; animation: spin-reverse 36s linear infinite; }
.hero__orbit--inner::before { right: 3%; bottom: 28%; width: 6px; height: 6px; background: var(--sage); box-shadow: 0 0 20px var(--sage); }
.hero__mark {
  position: relative; z-index: 2; width: 69%; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden;
  border-radius: 50%; background: radial-gradient(circle at 45% 35%, rgba(255,255,255,.075), rgba(255,255,255,.018) 52%, transparent 53%);
}
.hero__mark::after { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(239,112,95,.25); border-radius: 50%; }
.hero__core { position: relative; z-index: 2; width: 19%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.hero__core::before, .hero__core::after { content: ""; position: absolute; border-radius: 50%; }
.hero__core::before { inset: 19%; border: 1px solid rgba(239,112,95,.75); }
.hero__core::after { width: 15%; aspect-ratio: 1; left: 50%; top: 50%; background: var(--coral); box-shadow: 0 0 32px rgba(239,112,95,.78); transform: translate(-50%,-50%); }
.hero__visual-note { position: absolute; z-index: 3; margin: 0; color: var(--coral); font-family: var(--font-accent); font-size: .68rem; letter-spacing: .13em; }
.hero__visual-note span { display: block; margin-top: 3px; color: rgba(255,255,255,.57); font-size: .6rem; text-transform: uppercase; }
.hero__visual-note--top { right: 1%; top: 21%; }
.hero__visual-note--bottom { left: 3%; bottom: 20%; }
.hero__scroll { position: absolute; z-index: 3; right: 30px; bottom: 42px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.52); font-size: .64rem; letter-spacing: .16em; text-decoration: none; text-transform: uppercase; transform: rotate(90deg); transform-origin: 100% 50%; }
.hero__scroll i { display: block; width: 45px; height: 1px; background: rgba(255,255,255,.35); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }

/* Shared headings */
.section-heading { display: grid; grid-template-columns: minmax(0,2fr) minmax(260px,.72fr); gap: 80px; align-items: end; margin-bottom: 70px; }
.section-heading h2 { max-width: 830px; margin-bottom: 0; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); font-size: .98rem; }
.section-heading--light h2 { color: var(--white); }
.section-heading--light > p { color: rgba(255,255,255,.57); }
.section-heading--compact { align-items: center; margin-bottom: 55px; }

/* Manifesto */
.manifesto { background: var(--paper); }
.manifesto__grid { display: grid; grid-template-columns: 260px 1fr; gap: clamp(50px,9vw,130px); align-items: start; }
.manifesto h2 { max-width: 900px; margin-bottom: 52px; }
.manifesto h2 em { display: block; }
.manifesto__copy { display: grid; grid-template-columns: repeat(2,1fr); gap: 50px; padding-top: 38px; border-top: 1px solid var(--line); }
.manifesto__copy p { margin: 0; color: var(--muted); font-size: 1.04rem; }

/* Areas */
.areas__grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.area-card { position: relative; min-height: 310px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: background .3s ease, transform .3s ease; }
.area-card:hover { z-index: 2; background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow); }
.area-card__number { color: var(--coral); font-family: var(--font-accent); font-size: .7rem; letter-spacing: .15em; }
.area-card h3 { margin-bottom: 13px; font-size: 1.55rem; }
.area-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.area-card__arrow { position: absolute; top: 25px; right: 27px; color: var(--sage); font-size: 1.25rem; transition: transform .25s ease, color .25s ease; }
.area-card:hover .area-card__arrow { color: var(--coral); transform: translate(3px,-3px); }

/* Method */
.method { overflow: hidden; background: var(--ink); color: var(--white); }
.method::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: -340px; height: 520px; border: 1px solid rgba(239,112,95,.18); border-radius: 50%; }
.method__steps { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5,1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.method-step { min-height: 310px; padding: 30px 23px 20px; border-right: 1px solid var(--line-light); }
.method-step:last-child { border-right: 0; }
.method-step > span { display: block; margin-bottom: 72px; color: var(--coral); font-size: .68rem; letter-spacing: .16em; }
.method-step h3 { color: var(--white); font-size: 1.75rem; }
.method-step p { margin: 0; color: rgba(255,255,255,.52); font-size: .87rem; line-height: 1.65; }

/* Technology */
.technology { background: var(--paper); }
.technology__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px,9vw,130px); align-items: center; }
.technology__visual { position: relative; aspect-ratio: .9; display: grid; place-items: center; overflow: hidden; background: var(--ink-2); color: var(--white); }
.technology__visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 45%, rgba(239,112,95,.08)); }
.technology__rings { position: absolute; inset: 10%; display: grid; place-items: center; }
.technology__rings span { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.technology__rings span:nth-child(1) { inset: 0; }
.technology__rings span:nth-child(2) { inset: 15%; }
.technology__rings span:nth-child(3) { inset: 31%; border-color: rgba(239,112,95,.45); }
.technology__rings i { width: 12px; height: 12px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 30px var(--coral); }
.technology__visual > p { position: absolute; z-index: 2; left: 38px; bottom: 34px; margin: 0; color: rgba(255,255,255,.48); font-size: .77rem; letter-spacing: .06em; line-height: 1.5; text-transform: uppercase; }
.technology__visual > p strong { color: var(--white); font-weight: 500; }
.technology__content h2 { margin-bottom: 30px; }
.technology__lead { max-width: 650px; margin-bottom: 42px; color: var(--muted); font-size: 1.04rem; }
.technology__list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.technology__list li { display: grid; grid-template-columns: 48px 1fr; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--font-accent); font-size: .88rem; }
.technology__list span { color: var(--coral); font-size: .64rem; letter-spacing: .12em; }
.technology-teasers { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 74px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.technology-teaser { position: relative; min-height: 270px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: background .3s ease, transform .3s ease; }
.technology-teaser:hover { z-index: 2; background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow); }
.technology-teaser > span { display: block; min-height: 35px; margin-bottom: 45px; color: var(--coral-dark); font-family: var(--font-accent); font-size: .61rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.technology-teaser h3 { margin-bottom: 12px; font-size: 1.35rem; }
.technology-teaser p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.58; }
.technology-teaser i { position: absolute; right: 23px; top: 22px; color: var(--coral); font-style: normal; }
.technology-all-link, .team__all { display: flex; justify-content: flex-end; margin-top: 30px; }

/* Proprietary protocol */
.home-protocol { overflow: hidden; background: var(--ink-3); color: var(--white); }
.home-protocol::before { content: ""; position: absolute; width: 680px; height: 680px; left: -230px; top: -210px; border: 1px solid rgba(239,112,95,.2); border-radius: 50%; }
.home-protocol__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px,10vw,140px); align-items: center; }
.home-protocol__mark, .protocol-mark { position: relative; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: var(--white); }
.home-protocol__mark::before, .home-protocol__mark::after, .protocol-mark::before, .protocol-mark::after { content: ""; position: absolute; border: 1px solid rgba(239,112,95,.35); border-radius: 50%; }
.home-protocol__mark::before, .protocol-mark::before { inset: 13%; }
.home-protocol__mark::after, .protocol-mark::after { inset: 28%; border-style: dashed; }
.home-protocol__mark span, .protocol-mark span { position: relative; left: -38px; font-family: var(--font-display); font-size: clamp(5rem,10vw,9rem); line-height: 1; }
.home-protocol__mark strong, .protocol-mark strong { position: absolute; color: var(--coral); font-family: var(--font-display); font-size: clamp(7rem,14vw,13rem); font-weight: 500; line-height: 1; transform: translate(25px,8px); }
.home-protocol__mark i, .protocol-mark i { position: absolute; bottom: 16%; color: rgba(255,255,255,.55); font-family: var(--font-accent); font-size: .65rem; font-style: normal; letter-spacing: .25em; text-transform: uppercase; }
.home-protocol__content h2 { max-width: 720px; margin-bottom: 28px; color: var(--white); }
.home-protocol__content > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.6); }
.home-protocol__content ul { margin: 30px 0 37px; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.home-protocol__content li { padding: 13px 0; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.75); font-size: .86rem; }

/* Team */
.team__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { background: var(--white); transition: transform .3s ease, box-shadow .3s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card__image { aspect-ratio: 4/4.7; overflow: hidden; background: #dfe2df; }
.team-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; filter: saturate(.72); transition: transform .6s ease, filter .4s ease; }
.team-card:nth-child(2) .team-card__image img { object-position: center 18%; }
.team-card:hover .team-card__image img { transform: scale(1.025); filter: saturate(.95); }
.team-card__body { min-height: 220px; padding: 26px 26px 28px; border: 1px solid var(--line); border-top: 0; }
.team-card h3 { margin-bottom: 7px; font-size: 1.4rem; }
.team-card h3 a { text-decoration: none; }
.team-card__role { min-height: 38px; margin-bottom: 17px; color: var(--coral-dark) !important; font-family: var(--font-accent); font-size: .66rem !important; font-weight: 600; letter-spacing: .07em; line-height: 1.45 !important; text-transform: uppercase; }
.team-card__body > p:last-child { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.6; }
.team-card__body .post-card__link { margin-top: 18px; }

/* Entity archives and profiles */
.entity-archive__hero > .wrap > p:last-child { max-width: 760px; }
.entity-archive__content { padding-block: 95px 125px; }
.professional-directory { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.area-directory { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.area-directory__card { min-height: 390px; display: flex; flex-direction: column; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.34); }
.area-directory__card h2 { max-width: 520px; margin: auto 0 18px; font-size: clamp(2rem,3vw,3rem); }
.area-directory__card h2 a { text-decoration: none; }
.area-directory__card > p:not(.area-card__number) { max-width: 570px; color: var(--muted); }
.professional-card { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 410px; background: var(--white); border: 1px solid var(--line); }
.professional-card__image { display: block; overflow: hidden; background: #dfe2df; }
.professional-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: saturate(.76); transition: transform .5s ease, filter .3s ease; }
.professional-card:hover .professional-card__image img { transform: scale(1.025); filter: saturate(.98); }
.professional-card__body { display: flex; flex-direction: column; padding: 30px; }
.professional-card__role, .professional-card__credentials { color: var(--coral-dark); font-family: var(--font-accent); font-size: .64rem; font-weight: 600; letter-spacing: .07em; line-height: 1.45; text-transform: uppercase; }
.professional-card h2 { margin-bottom: 15px; font-size: 1.75rem; }
.professional-card h2 a { text-decoration: none; }
.professional-card__body > p:not(.professional-card__role):not(.professional-card__credentials) { color: var(--muted); font-size: .84rem; line-height: 1.6; }
.professional-card__credentials { margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); }
.technology-directory { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.technology-directory__card { position: relative; min-height: 370px; display: flex; flex-direction: column; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.technology-directory__card h2 { max-width: 500px; margin: auto 0 16px; font-size: 2rem; }
.technology-directory__card h2 a { text-decoration: none; }
.technology-directory__card > p:not(.area-card__number):not(.technology-directory__maker) { color: var(--muted); }
.technology-directory__maker { color: var(--coral-dark); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.protocol-directory__card { position: relative; max-width: 980px; padding: clamp(45px,7vw,85px); overflow: hidden; background: var(--ink-2); color: var(--white); }
.protocol-directory__card::after { content: "L5"; position: absolute; right: -20px; top: -40px; color: rgba(255,255,255,.035); font-family: var(--font-display); font-size: 17rem; line-height: 1; }
.protocol-directory__card h2 { position: relative; z-index: 1; max-width: 680px; color: var(--white); font-size: clamp(2.6rem,5vw,4.4rem); }
.protocol-directory__card h2 a { text-decoration: none; }
.protocol-directory__card > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 600px; color: rgba(255,255,255,.58); }
.protocol-directory__card .button { position: relative; z-index: 1; }
.entity-hero { padding: calc(var(--header-height) + 70px) 0 0; overflow: hidden; background: var(--ink); color: var(--white); }
.entity-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px,8vw,110px); align-items: end; min-height: 690px; }
.entity-hero__content { align-self: center; padding: 50px 0 80px; }
.entity-hero__kicker { margin-bottom: 17px; color: var(--coral); font-family: var(--font-accent); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.entity-hero h1 { margin-bottom: 27px; color: var(--white); font-size: clamp(3.3rem,6.6vw,6.6rem); }
.entity-hero__excerpt { max-width: 670px; margin-bottom: 22px; color: rgba(255,255,255,.66); font-size: 1.12rem; }
.entity-hero__credentials { margin-bottom: 32px; color: rgba(255,255,255,.43); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.entity-hero__portrait { align-self: stretch; min-height: 620px; overflow: hidden; }
.entity-hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: saturate(.75); }
.trust-strip { background: var(--ice); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-strip__grid > p { min-height: 112px; display: flex; flex-direction: column; justify-content: center; margin: 0; padding: 23px 30px; border-right: 1px solid var(--line); }
.trust-strip__grid > p:first-child { border-left: 1px solid var(--line); }
.trust-strip__grid span { display: block; margin-bottom: 6px; color: var(--coral-dark); font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }
.trust-strip__grid strong { color: var(--ink); font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; line-height: 1.3; }
.entity-body { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: clamp(60px,9vw,120px); padding-block: 95px 125px; align-items: start; }
.entity-body__content { max-width: 790px; }
.entity-body__aside { position: sticky; top: 100px; padding: 27px; background: var(--ink-2); color: rgba(255,255,255,.62); }
.entity-body__aside .footer-label { color: var(--coral); }
.entity-body__aside p { padding-bottom: 16px; border-bottom: 1px solid var(--line-light); font-size: .84rem; }
.entity-body__aside p span { display: block; color: rgba(255,255,255,.38); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; }
.entity-body__aside a { display: block; padding: 11px 0; border-bottom: 1px solid var(--line-light); color: var(--white); font-size: .75rem; text-decoration: none; }
.entity-body__aside .entity-body__note { margin: 20px 0 0; padding: 0; border: 0; color: rgba(255,255,255,.38); font-size: .72rem; }
.entity-hero--technology .entity-hero__grid, .entity-hero--protocol .entity-hero__grid { align-items: center; }
.entity-hero__tech-visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.entity-hero__tech-visual span { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.entity-hero__tech-visual span:nth-child(1) { inset: 2%; }
.entity-hero__tech-visual span:nth-child(2) { inset: 18%; border-style: dashed; }
.entity-hero__tech-visual span:nth-child(3) { inset: 35%; border-color: rgba(239,112,95,.5); }
.entity-hero__tech-visual i { width: 14px; height: 14px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 35px var(--coral); }
.entity-hero__area-mark { position: relative; width: min(100%,520px); aspect-ratio: 1; margin: 40px auto; }
.entity-hero__area-mark span { position: absolute; inset: 8%; border: 1px solid rgba(41,67,61,.18); border-radius: 50%; }
.entity-hero__area-mark span:nth-child(2) { inset: 25%; border-color: rgba(234,124,106,.42); transform: translate(11%,-7%); }
.entity-hero__area-mark i { position: absolute; width: 22%; aspect-ratio: 1; left: 39%; top: 39%; border-radius: 50%; background: radial-gradient(circle at 35% 30%,#fff,var(--coral-soft)); box-shadow: 0 24px 70px rgba(41,67,61,.15); }
.protocol-mark { width: min(100%,520px); margin: 40px auto; }
.medical-note { margin-top: 50px; padding: 25px 27px; border-left: 3px solid var(--coral); background: var(--ice); }
.medical-note strong { color: var(--ink); font-family: var(--font-accent); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.medical-note p { margin: 6px 0 0; color: var(--muted); font-size: .85rem; }
.solution-conversion { margin: 60px 0 15px; padding: clamp(32px,5vw,54px); background: var(--coral-soft); }
.solution-conversion .eyebrow { margin-bottom: 20px; }
.solution-conversion h2 { max-width: 660px; margin-bottom: 16px; font-size: clamp(2rem,4vw,3.5rem); }
.solution-conversion > p:not(.eyebrow) { max-width: 620px; margin-bottom: 25px; color: var(--muted); }
.solution-conversion .button { color: var(--white); }
.entity-body__aside .solution-aside__button { margin: 19px 0 10px; padding: 13px 17px; border: 1px solid var(--ink); color: var(--white); text-align: center; }
.entity-body__aside .solution-aside__button:hover { border-color: var(--coral); background: var(--coral); color: var(--ink); }
.entity-faq { margin-top: 75px; padding-top: 58px; border-top: 1px solid var(--line); }
.entity-faq h2 { max-width: 680px; margin: 0 0 35px; font-size: clamp(2rem,3.8vw,3.4rem); }
.entity-faq__list { border-top: 1px solid var(--line); }
.entity-faq details { border-bottom: 1px solid var(--line); }
.entity-faq summary { position: relative; padding: 23px 42px 23px 0; color: var(--ink); font-family: var(--font-display); font-size: 1.18rem; cursor: pointer; list-style: none; }
.entity-faq summary::-webkit-details-marker { display: none; }
.entity-faq summary::after { content: "+"; position: absolute; right: 5px; top: 21px; color: var(--coral-dark); font-family: var(--font-body); font-size: 1.25rem; }
.entity-faq details[open] summary::after { content: "–"; }
.entity-faq details p { margin: -5px 0 24px; color: var(--muted); font-size: .94rem; }
.article-review { margin-bottom: 55px; padding: 28px; border: 1px solid var(--line); }
.article-review__people { display: grid; gap: 10px; }
.article-review__people a { display: flex; align-items: center; gap: 15px; padding: 12px; background: var(--ice); text-decoration: none; }
.article-review__people img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.article-review__people strong, .article-review__people small { display: block; }
.article-review__people strong { color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.article-review__people small { color: var(--muted); font-size: .67rem; }
.article-review > p:last-child { margin: 14px 0 0; color: var(--muted); font-size: .72rem; }

/* Content hub */
.content-hub { overflow: hidden; background: var(--ink-2); color: var(--white); }
.content-hub::before { content: "M"; position: absolute; right: -3vw; top: -11vw; color: rgba(255,255,255,.025); font-family: var(--font-display); font-size: 38vw; line-height: 1; }
.content-hub__header { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.7fr) minmax(260px,.65fr); gap: 80px; align-items: end; margin-bottom: 72px; }
.content-hub__header h2 { max-width: 800px; margin: 0; color: var(--white); }
.content-hub__header > p { margin: 0 0 10px; color: rgba(255,255,255,.55); }
.content-hub__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.topic-card { position: relative; min-height: 250px; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); color: var(--white); text-decoration: none; transition: background .3s ease; }
.topic-card:hover { background: rgba(255,255,255,.055); }
.topic-card__line { display: block; width: 22px; height: 2px; margin-bottom: 65px; background: var(--coral); transition: width .3s ease; }
.topic-card:hover .topic-card__line { width: 52px; }
.topic-card h3 { margin-bottom: 12px; color: var(--white); font-size: 1.55rem; }
.topic-card p { max-width: 280px; margin: 0; color: rgba(255,255,255,.49); font-size: .85rem; line-height: 1.6; }
.topic-card__arrow { position: absolute; right: 27px; bottom: 25px; color: var(--coral); font-size: 1.2rem; }

/* Posts */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.post-card { min-width: 0; background: var(--white); border: 1px solid var(--line); }
.post-card__media { aspect-ratio: 16/10; display: grid; place-items: center; overflow: hidden; background: var(--ink-2); color: rgba(255,255,255,.43); font-family: var(--font-accent); font-size: .68rem; letter-spacing: .16em; text-decoration: none; text-transform: uppercase; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card__media img { transform: scale(1.03); }
.post-card__body { padding: 26px 27px 28px; }
.post-card__meta { margin-bottom: 14px; color: var(--coral-dark); font-size: .63rem; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.post-card__meta a { text-decoration: none; }
.post-card h3 { margin-bottom: 15px; font-size: 1.52rem; line-height: 1.22; }
.post-card h3 a { text-decoration: none; }
.post-card__body > p:not(.post-card__meta) { color: var(--muted); font-size: .86rem; line-height: 1.62; }
.post-card__link { display: inline-flex; gap: 11px; align-items: center; color: var(--ink); font-family: var(--font-accent); font-size: .67rem; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.post-card__link span { color: var(--coral); font-size: 1rem; }

/* FAQ */
.faq { background: var(--ice); }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px,9vw,130px); }
.faq header h2 { margin-bottom: 26px; }
.faq header > p:last-child { color: var(--muted); }
.faq__list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 25px 0; color: var(--ink); cursor: pointer; font-family: var(--font-display); font-size: 1.3rem; line-height: 1.35; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; flex: 0 0 22px; width: 22px; height: 22px; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; left: 2px; top: 10px; width: 18px; height: 1px; background: var(--coral); transition: transform .25s ease; }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-item > div { padding: 0 42px 24px 0; }
.faq-item > div p { margin: 0; color: var(--muted); font-size: .92rem; }

/* Location */
.location { background: var(--ink); color: var(--white); }
.location__grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; }
.location__map { position: relative; min-height: 510px; overflow: hidden; background: #1b303a; }
.location__map-grid { position: absolute; inset: 0; opacity: .32; transform: rotate(-9deg) scale(1.2); background-image: linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px); background-size: 48px 48px; }
.location__map::before, .location__map::after { content: ""; position: absolute; width: 140%; height: 36px; left: -20%; border: 1px solid rgba(239,112,95,.4); border-radius: 50%; transform: rotate(31deg); }
.location__map::before { top: 25%; }
.location__map::after { top: 62%; transform: rotate(-22deg); }
.location__pin { position: absolute; left: 51%; top: 44%; width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(239,112,95,.6); border-radius: 50%; background: rgba(239,112,95,.12); }
.location__pin i { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 24px var(--coral); }
.location__map > p { position: absolute; left: 28px; bottom: 23px; margin: 0; color: rgba(255,255,255,.55); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.location__map > p strong { color: var(--white); font-weight: 500; }
.location__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px,7vw,92px); background: var(--ink-2); }
.location__content h2 { margin-bottom: 26px; color: var(--white); }
.location__content > p:not(.eyebrow) { color: rgba(255,255,255,.57); }
.location__content address { margin: 20px 0 31px; padding-top: 22px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.55); font-style: normal; font-size: .88rem; }
.location__content address strong { color: var(--white); font-weight: 500; }

/* Final CTA */
.final-cta { overflow: hidden; background: var(--coral-soft); text-align: center; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 480px; height: 150px; border: 1px solid rgba(239,112,95,.32); border-radius: 50%; }
.final-cta::before { left: -160px; top: 25%; transform: rotate(20deg); }
.final-cta::after { right: -170px; bottom: 18%; transform: rotate(-17deg); }
.final-cta__inner { position: relative; z-index: 2; max-width: 900px; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { margin-bottom: 27px; }
.final-cta__inner > p:not(.eyebrow) { max-width: 620px; margin: 0 auto 34px; color: var(--muted); }
.final-cta .button { background: var(--ink); border-color: var(--ink); color: var(--white); }
.final-cta .button:hover { background: var(--coral); border-color: var(--coral); color: var(--ink); }

/* Footer */
.site-footer { padding: 82px 0 24px; background: #0a1218; color: rgba(255,255,255,.58); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 70px; padding-bottom: 65px; }
.site-footer__brand img { width: 220px; margin-bottom: 13px; }
.site-footer__brand p { margin: 0; font-family: var(--font-display); font-size: 1.15rem; font-style: italic; }
.footer-label { margin-bottom: 18px; color: var(--white); font-family: var(--font-accent); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.site-footer .menu { display: block; }
.site-footer .menu li { margin: 7px 0; }
.site-footer .menu a, .footer-contact a { color: rgba(255,255,255,.55); font-size: .82rem; text-decoration: none; transition: color .2s ease; }
.site-footer .menu a:hover, .footer-contact a:hover { color: var(--coral); }
.footer-contact { margin: 0; padding: 0; list-style: none; }
.footer-contact li { margin: 7px 0; overflow-wrap: anywhere; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 21px; border-top: 1px solid var(--line-light); }
.site-footer__bottom p { margin: 0; font-size: .7rem; }
.floating-whatsapp { position: fixed; z-index: 850; right: 22px; bottom: 22px; width: 55px; height: 55px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: var(--ink); box-shadow: 0 12px 35px rgba(16,26,34,.25); transition: transform .25s ease, background .25s ease; }
.floating-whatsapp:hover { background: var(--white); transform: translateY(-4px); }
.floating-promos { position: fixed; z-index: 840; left: 22px; bottom: 22px; width: min(390px,calc(100vw - 110px)); display: grid; pointer-events: none; }
.floating-promos[hidden], .floating-promo[hidden] { display: none !important; }
.floating-promos__close { position: absolute; z-index: 3; right: 10px; top: 9px; width: 30px; height: 30px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(41,67,61,.15); border-radius: 50%; background: rgba(255,255,255,.88); color: var(--ink); font-size: 1.2rem; line-height: 1; cursor: pointer; pointer-events: auto; }
.floating-promo { position: relative; grid-area: 1/1; min-height: 180px; display: flex; flex-direction: column; justify-content: center; padding: 24px 48px 34px 25px; overflow: hidden; border: 1px solid rgba(41,67,61,.13); background: var(--white); box-shadow: 0 20px 55px rgba(41,67,61,.2); color: var(--ink); opacity: 0; visibility: hidden; transform: translateY(20px) scale(.985); transition: opacity .48s ease, visibility .48s ease, transform .48s ease; pointer-events: none; }
.floating-promo::before { content: ""; position: absolute; width: 150px; height: 150px; right: -75px; bottom: -85px; border: 1px solid currentColor; border-radius: 50%; opacity: .12; }
.floating-promo.is-visible { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.floating-promo--consultation { background: #f2f6f3; }
.floating-promo--calorimetry { border-color: rgba(255,255,255,.12); background: var(--ink); color: var(--white); }
.floating-promo--sibo { background: #f9ddd6; }
.floating-promo--sleep { border-color: rgba(41,67,61,.1); background: #e8f0f3; }
.floating-promo__label { margin-bottom: 10px; color: var(--coral-dark); font-family: var(--font-accent); font-size: .6rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.floating-promo--calorimetry .floating-promo__label { color: var(--coral); }
.floating-promo strong { max-width: 310px; font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; line-height: 1.13; }
.floating-promo small { max-width: 300px; margin-top: 9px; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.floating-promo--calorimetry small { color: rgba(255,255,255,.6); }
.floating-promo__cta { align-self: flex-start; margin-top: 15px; color: inherit; font-size: .65rem; font-weight: 600; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.floating-promo__cta i { display: inline-block; margin-left: 4px; font-style: normal; transition: transform .2s ease; }
.floating-promo:hover .floating-promo__cta i { transform: translateX(5px); }
.floating-promos__progress { position: absolute; z-index: 3; left: 27px; bottom: 18px; display: flex; gap: 5px; pointer-events: none; }
.floating-promos__progress span { width: 18px; height: 2px; background: var(--coral-dark); opacity: .22; transition: width .3s ease, opacity .3s ease; }
.floating-promos__progress span.is-active { width: 32px; opacity: .8; }

/* Internal pages */
.page-hero { padding: calc(var(--header-height) + 105px) 0 100px; background: var(--ink); color: var(--white); }
.page-hero h1 { max-width: 900px; margin-bottom: 0; color: var(--white); font-size: clamp(2.8rem,6vw,5.7rem); }
.page-hero > .wrap > p:last-child, .archive-description { max-width: 650px; margin: 26px 0 0; color: rgba(255,255,255,.57); }
.archive-content { padding-block: 90px 120px; }
.post-grid--archive { row-gap: 34px; }
.navigation.pagination { margin-top: 55px; }
.portal-page__search { max-width: 760px; margin: 0 0 52px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.portal-page__search label { display: block; margin-bottom: 10px; color: var(--ink); font-weight: 600; }
.portal-page__search > div { display: flex; gap: 10px; }
.portal-page__search input { min-width: 0; flex: 1; padding: 13px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--ice); color: var(--ink); }
.portal-page__search button { padding: 13px 22px; border: 0; border-radius: 999px; background: var(--coral); color: var(--white); font-weight: 600; cursor: pointer; }
.portal-page .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; min-height: 42px; margin: 48px 5px 0 0; padding: 7px 12px; border-radius: 999px; background: var(--white); color: var(--ink); }
.portal-page .page-numbers.current { background: var(--ink); color: var(--white); }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.page-numbers.current, .page-numbers:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.single-article__header { padding: calc(var(--header-height) + 100px) 0 86px; background: var(--ink); color: var(--white); text-align: center; }
.single-article__category { margin-bottom: 24px; color: var(--coral); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.single-article__category a { text-decoration: none; }
.single-article h1 { margin-bottom: 26px; color: var(--white); font-size: clamp(2.6rem,5.6vw,5.4rem); }
.single-article__excerpt { color: rgba(255,255,255,.66); font-size: 1.1rem; }
.single-article__meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 24px; margin-top: 32px; color: rgba(255,255,255,.43); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
.single-article__featured { margin-top: -40px; }
.single-article__featured img, .page-featured img { width: 100%; max-height: 720px; object-fit: cover; }
.single-article__content { padding-block: 82px 60px; }
.entry-content { color: #34434c; font-size: 1.05rem; }
.entry-content > * { max-width: 100%; }
.entry-content h2 { margin: 2em 0 .7em; font-size: clamp(2rem,3.6vw,3rem); }
.entry-content h3 { margin: 1.8em 0 .6em; font-size: 1.65rem; }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1.45em; }
.entry-content blockquote { margin: 2.2em 0; padding: 7px 0 7px 28px; border-left: 3px solid var(--coral); color: var(--ink); font-family: var(--font-display); font-size: 1.55rem; line-height: 1.45; }
.entry-content a { color: var(--coral-dark); }
.article-lead { color: var(--ink); font-family: var(--font-display); font-size: clamp(1.25rem,2.2vw,1.65rem); line-height: 1.55; }
.article-toc { margin: 42px 0 54px; padding: 30px 34px; border: 1px solid var(--line); background: var(--ice); }
.article-toc > strong { display: block; margin-bottom: 17px; color: var(--ink); font-family: var(--font-accent); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.article-toc ol { columns: 2; column-gap: 44px; margin: 0; padding-left: 20px; }
.article-toc li { break-inside: avoid; margin: 0 0 10px; padding-left: 5px; color: var(--muted); }
.article-toc a { color: var(--ink); text-decoration-color: rgba(234,124,106,.55); text-underline-offset: 3px; }
.article-references { padding: 25px 28px 10px 48px; border-left: 3px solid var(--sage); background: #f7f5ef; font-size: .92rem; }
.article-references li { padding-left: 7px; }
.article-disclaimer { margin-top: 42px; padding: 22px 25px; border: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.single-article__footer { padding-bottom: 95px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.tag-list > span { margin-right: 10px; color: var(--muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.tag-list a { padding: 5px 11px; border: 1px solid var(--line); color: var(--muted); font-size: .72rem; text-decoration: none; }
.article-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 30px; background: var(--ice); }
.article-cta strong { color: var(--ink); font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; }
.article-cta p { margin: 3px 0 0; color: var(--muted); font-size: .85rem; }
.article-cta .button:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.page-content { padding-block: 85px 120px; }
.page-featured { margin-top: -40px; }
.comments-area { padding-bottom: 90px; }
.comment-list { padding-left: 0; list-style: none; }
.comment-list .comment { padding: 20px 0; border-bottom: 1px solid var(--line); }
.comment-form input:not([type=submit]), .comment-form textarea, .search-field { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 0; background: var(--white); color: var(--ink); }
.comment-form input[type=submit], .search-form button { padding: 13px 22px; border: 1px solid var(--coral); border-radius: 0; background: var(--coral); color: var(--ink); cursor: pointer; font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.search-form { display: flex; max-width: 620px; margin-top: 30px; }
.search-form label { flex: 1; }
.error-page { min-height: 100vh; display: grid; place-items: center; padding: calc(var(--header-height) + 50px) 0 70px; background: var(--ink); color: var(--white); text-align: center; }
.error-page__inner { max-width: 700px; }
.error-page__code { margin-bottom: 5px; color: var(--coral); font-size: .75rem; letter-spacing: .2em; }
.error-page h1 { margin-bottom: 22px; color: var(--white); font-size: clamp(2.7rem,6vw,5rem); }
.error-page__inner > p:not(.error-page__code) { color: rgba(255,255,255,.56); }
.error-page .search-form { margin-inline: auto; margin-bottom: 24px; }
.no-results { max-width: 700px; padding: 50px 0; }

/* Serene editorial direction — light, natural and contemporary */
.site-header {
  background: rgba(52,83,75,.96); border-bottom-color: rgba(255,255,255,.12); backdrop-filter: blur(14px);
}
.site-header.is-scrolled { background: rgba(52,83,75,.97); border-color: rgba(255,255,255,.14); }
.primary-navigation .sub-menu { background: #34534b; }

.hero {
  background: linear-gradient(135deg,#fbfaf6 0%,#eef4ef 58%,#f8e9e3 100%); color: var(--ink);
}
.hero::before {
  opacity: .38;
  background-image: linear-gradient(rgba(41,67,61,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(41,67,61,.045) 1px,transparent 1px);
  mask-image: linear-gradient(to right,black,transparent 78%);
}
.hero__glow--one { background: radial-gradient(circle,rgba(234,124,106,.20),transparent 68%); }
.hero__glow--two { background: radial-gradient(circle,rgba(145,170,159,.22),transparent 70%); }
.hero h1 { color: var(--ink); }
.hero__lead { color: #40564f; }
.hero__support { color: var(--muted); }
.hero .text-link, .hero__scroll { color: var(--ink); }
.hero .button:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.hero__trust { border-top-color: var(--line); }
.hero__trust li + li { border-left-color: var(--line); }
.hero__trust strong { color: var(--ink); }
.hero__trust span { color: var(--muted); }
.hero__orbit { border-color: rgba(41,67,61,.18); }
.hero__mark { background: radial-gradient(circle at 45% 35%,rgba(255,255,255,.78),rgba(255,255,255,.28) 52%,transparent 53%); }
.hero__mark::after { border-color: rgba(234,124,106,.34); }
.hero__core { border-color: rgba(41,67,61,.48); }
.hero__visual-note span { color: var(--muted); }
.hero__scroll i { background: rgba(41,67,61,.35); }

.method { background: #dfeae4; color: var(--ink); }
.method::after { border-color: rgba(234,124,106,.28); }
.method .section-heading--light h2 { color: var(--ink); }
.method .section-heading--light > p, .method-step p { color: var(--muted); }
.method .eyebrow--light { color: var(--coral-dark); }
.method__steps { border-top-color: var(--line); }
.method-step { border-right-color: var(--line); }
.method-step h3 { color: var(--ink); }

.technology__visual { background: #e5eee9; color: var(--ink); }
.technology__visual::before { background: linear-gradient(135deg,transparent 45%,rgba(234,124,106,.12)); }
.technology__rings span { border-color: rgba(41,67,61,.18); }
.technology__rings span:nth-child(3) { border-color: rgba(234,124,106,.52); }
.technology__visual > p { color: var(--muted); }
.technology__visual > p strong { color: var(--ink); }

.home-protocol { background: #f1e7df; color: var(--ink); }
.home-protocol::before { border-color: rgba(234,124,106,.32); }
.home-protocol__mark, .protocol-mark { border-color: rgba(41,67,61,.18); color: var(--ink); }
.home-protocol__mark::before, .home-protocol__mark::after, .protocol-mark::before, .protocol-mark::after { border-color: rgba(234,124,106,.48); }
.home-protocol__mark i, .protocol-mark i { color: var(--muted); }
.home-protocol__content h2 { color: var(--ink); }
.home-protocol__content > p:not(.eyebrow), .home-protocol__content li { color: var(--muted); }
.home-protocol__content ul, .home-protocol__content li { border-color: var(--line); }
.home-protocol .eyebrow--light { color: var(--coral-dark); }
.home-protocol .button { background: var(--ink); border-color: var(--ink); color: var(--white); }
.home-protocol .button:hover { background: var(--coral); border-color: var(--coral); color: var(--ink); }

.content-hub { background: #e5eee9; color: var(--ink); }
.content-hub::before { color: rgba(41,67,61,.035); }
.content-hub__header h2, .topic-card h3 { color: var(--ink); }
.content-hub__header > p, .topic-card p { color: var(--muted); }
.content-hub .eyebrow--light { color: var(--coral-dark); }
.content-hub__grid { border-color: var(--line); }
.topic-card { border-color: var(--line); color: var(--ink); }
.topic-card:hover { background: rgba(255,255,255,.62); }

.location { background: #e4eee8; color: var(--ink); }
.location__map { background: #b9cec3; }
.location__map-grid { background-image: linear-gradient(rgba(41,67,61,.10) 1px,transparent 1px),linear-gradient(90deg,rgba(41,67,61,.10) 1px,transparent 1px); }
.location__map > p { color: rgba(41,67,61,.62); }
.location__map > p strong { color: var(--ink); }
.location__content { background: #f8f6f0; }
.location__content h2 { color: var(--ink); }
.location__content > p:not(.eyebrow), .location__content address { color: var(--muted); }
.location__content address { border-top-color: var(--line); }
.location__content address strong { color: var(--ink); }
.location .eyebrow--light { color: var(--coral-dark); }
.location .text-link { color: var(--ink); }

.site-footer { background: #34534b; }

.page-hero, .single-article__header, .entity-hero, .error-page {
  background: linear-gradient(135deg,#eef4ef 0%,#f8f5ef 66%,#f8e8e2 100%); color: var(--ink);
}
.page-hero h1, .single-article h1, .entity-hero h1, .error-page h1 { color: var(--ink); }
.page-hero > .wrap > p:last-child, .archive-description, .single-article__excerpt, .entity-hero__excerpt, .error-page__inner > p:not(.error-page__code) { color: var(--muted); }
.single-article__meta, .entity-hero__credentials { color: rgba(41,67,61,.55); }
.page-hero .eyebrow--light, .entity-hero .eyebrow--light { color: var(--coral-dark); }
.entity-hero__portrait img { filter: saturate(.68) contrast(.96); }
.entity-hero__tech-visual span { border-color: rgba(41,67,61,.18); }
.entity-body__aside { background: #e6eee9; color: var(--text); }
.entity-body__aside .footer-label { color: var(--coral-dark); }
.entity-body__aside p, .entity-body__aside a { border-bottom-color: var(--line); }
.entity-body__aside p span, .entity-body__aside .entity-body__note { color: var(--muted); }
.entity-body__aside a { color: var(--ink); }
.protocol-directory__card { background: #e6eee9; color: var(--ink); }
.protocol-directory__card::after { color: rgba(41,67,61,.045); }
.protocol-directory__card h2 { color: var(--ink); }
.protocol-directory__card > p:not(.eyebrow) { color: var(--muted); }
.protocol-directory__card .button { background: var(--ink); border-color: var(--ink); color: var(--white); }
.post-card__media { background: #dfeae4; color: var(--muted); }

/* Renderização progressiva das seções fora da primeira tela. */
.manifesto, .areas, .method, .technology, .home-protocol, .team, .content-hub, .latest-posts, .faq, .location {
  content-visibility: auto;
  contain-intrinsic-size: auto 820px;
}

.button { box-shadow: 0 10px 28px rgba(234,124,106,.15); }
.floating-whatsapp { box-shadow: 0 12px 35px rgba(41,67,61,.18); }

@media (max-width: 1100px) {
  :root { --header-height: 74px; }
  .primary-navigation { gap: 18px; }
  .primary-navigation .menu { gap: 18px; }
  .hero__grid { grid-template-columns: 1.12fr .88fr; }
  .hero__visual-note { display: none; }
  .method__steps { grid-template-columns: repeat(3,1fr); }
  .method-step:nth-child(3) { border-right: 0; }
  .method-step:nth-child(n+4) { border-top: 1px solid var(--line-light); }
  .team__grid { grid-template-columns: repeat(2,1fr); }
  .technology-teasers { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .wrap { width: min(100% - 36px, 1240px); }
  .menu-toggle { z-index: 3; display: block; }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .primary-navigation {
    position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 34px;
    padding: 100px max(28px,8vw); background: var(--ink); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: .3s ease;
  }
  .primary-navigation.is-open { visibility: visible; opacity: 1; transform: none; }
  .primary-navigation .menu { display: block; }
  .primary-navigation .menu li { margin: 11px 0; }
  .primary-navigation .menu a { font-family: var(--font-display); font-size: clamp(1.8rem,7vw,3.2rem); letter-spacing: -.02em; text-transform: none; }
  .primary-navigation .sub-menu { position: static; display: block; padding: 0 0 0 18px; border: 0; opacity: 1; visibility: visible; transform: none; }
  .primary-navigation .sub-menu a { padding: 3px 0; font-size: 1.15rem; }
  .hero { padding-top: calc(var(--header-height) + 55px); }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { max-width: 760px; }
  .hero__visual { display: none; }
  .hero__scroll { display: none; }
  .manifesto__grid { grid-template-columns: 1fr; gap: 20px; }
  .section-heading, .content-hub__header { grid-template-columns: 1fr; gap: 25px; }
  .areas__grid { grid-template-columns: repeat(2,1fr); }
  .technology__grid { grid-template-columns: 1fr; }
  .technology__visual { aspect-ratio: 16/9; }
  .home-protocol__grid, .entity-hero__grid, .entity-body { grid-template-columns: 1fr; }
  .home-protocol__mark { width: min(100%,520px); margin-inline: auto; }
  .entity-hero__grid { min-height: auto; }
  .entity-hero__content { padding-bottom: 30px; }
  .entity-hero__portrait { min-height: 520px; }
  .entity-hero__tech-visual, .entity-hero--protocol .protocol-mark { width: min(100%,520px); margin: 0 auto 60px; }
  .entity-body { gap: 45px; padding-block: 75px 100px; }
  .entity-body__aside { position: static; }
  .professional-directory { grid-template-columns: 1fr; }
  .content-hub__grid { grid-template-columns: repeat(2,1fr); }
  .post-grid { grid-template-columns: repeat(2,1fr); }
  .post-grid > :last-child { grid-column: 1/-1; width: calc(50% - 13px); }
  .faq__grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map { min-height: 360px; }
  .site-footer__grid { grid-template-columns: 1.2fr 1fr; }
  .site-footer__grid > :nth-child(3) { grid-column: 2; }
}

@media (max-width: 640px) {
  .wrap, .wrap--article { width: min(100% - 30px, 1240px); }
  .section { padding: 76px 0; }
  .eyebrow { margin-bottom: 20px; }
  .site-brand, .site-brand img, .site-brand .custom-logo { width: 140px; }
  .hero { min-height: 100svh; padding-bottom: 50px; }
  .hero__grid { min-height: calc(100svh - 180px); }
  .hero h1 { font-size: clamp(2.8rem,14.2vw,4.6rem); }
  .hero__lead { font-size: 1.08rem; }
  .hero__support { font-size: .88rem; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 20px; margin-bottom: 38px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__trust li { padding: 13px 0; border-bottom: 1px solid var(--line-light); }
  .hero__trust li + li { padding-left: 0; border-left: 0; }
  .manifesto h2 { margin-bottom: 35px; }
  .manifesto__copy { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; }
  .section-heading { margin-bottom: 45px; }
  .areas__grid { grid-template-columns: 1fr; }
  .area-card { min-height: 250px; }
  .method__steps { grid-template-columns: 1fr; }
  .method-step { min-height: auto; padding: 25px 4px 29px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .method-step:nth-child(n+4) { border-top: 0; }
  .method-step > span { margin-bottom: 30px; }
  .technology__visual { min-height: 330px; aspect-ratio: auto; }
  .technology-teasers, .technology-directory, .area-directory { grid-template-columns: 1fr; }
  .technology-teaser { min-height: 235px; }
  .home-protocol__grid { gap: 48px; }
  .home-protocol__mark, .entity-hero--protocol .protocol-mark { width: min(100%,390px); }
  .home-protocol__mark span, .protocol-mark span { left: -22px; }
  .entity-hero { padding-top: calc(var(--header-height) + 45px); }
  .entity-hero__content { padding: 35px 0 20px; }
  .entity-hero h1 { font-size: clamp(2.8rem,14vw,4.8rem); }
  .entity-hero__portrait { min-height: auto; aspect-ratio: 4/5; }
  .entity-hero__tech-visual { width: min(100%,360px); margin-bottom: 45px; }
  .entity-hero__area-mark { width: min(100%,360px); margin-bottom: 45px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid > p, .trust-strip__grid > p:first-child { min-height: 90px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
  .professional-card { grid-template-columns: 1fr; }
  .professional-card__image { min-height: 330px; }
  .professional-card__body { padding: 28px; }
  .entity-body { padding-block: 60px 80px; }
  .entity-body__aside { padding: 23px; }
  .area-directory__card { min-height: 330px; padding: 28px; }
  .entity-faq { margin-top: 58px; padding-top: 45px; }
  .team__grid { grid-template-columns: 1fr; }
  .team-card__body { min-height: 0; }
  .content-hub__header { margin-bottom: 45px; }
  .content-hub__grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 220px; }
  .post-grid { grid-template-columns: 1fr; }
  .post-grid > :last-child { grid-column: auto; width: auto; }
  .latest-posts .section-heading .text-link { margin-top: 10px; }
  .faq-item summary { font-size: 1.12rem; }
  .location__content { padding: 45px 27px; }
  .site-footer { padding-top: 65px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 38px; }
  .site-footer__grid > :nth-child(3) { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; gap: 8px; }
  .floating-whatsapp { right: 15px; bottom: 15px; width: 50px; height: 50px; }
  .floating-promos { left: 12px; right: 76px; bottom: 12px; width: auto; }
  .floating-promos__close { top: 7px; right: 7px; width: 26px; height: 26px; font-size: 1rem; }
  .floating-promo { min-height: 116px; justify-content: flex-start; padding: 14px 38px 27px 16px; box-shadow: 0 12px 34px rgba(41,67,61,.18); }
  .floating-promo::before { width: 100px; height: 100px; right: -55px; bottom: -60px; }
  .floating-promo__label { margin-bottom: 4px; font-size: .5rem; }
  .floating-promo strong { font-size: 1.02rem; line-height: 1.12; }
  .floating-promo small { display: none; }
  .floating-promo__cta { margin-top: 7px; font-size: .56rem; line-height: 1.2; }
  .floating-promos__progress { left: 16px; bottom: 11px; gap: 4px; }
  .floating-promos__progress span { width: 12px; }
  .floating-promos__progress span.is-active { width: 20px; }
  .page-hero { padding: calc(var(--header-height) + 75px) 0 72px; }
  .archive-content { padding-block: 65px 85px; }
  .portal-page__search { margin-bottom: 38px; padding: 18px; }
  .portal-page__search > div { align-items: stretch; flex-direction: column; }
  .single-article__header { padding: calc(var(--header-height) + 70px) 0 67px; }
  .single-article__featured { margin-top: -24px; }
  .single-article__content { padding-block: 60px 42px; }
  .article-toc { padding: 25px 23px; }
  .article-toc ol { columns: 1; }
  .article-cta { align-items: stretch; flex-direction: column; }
  .search-form { flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .floating-whatsapp, .floating-promos, .final-cta, .article-cta { display: none !important; }
  body { background: #fff; color: #000; }
  .single-article__header { padding: 30px 0; background: #fff; color: #000; }
  .single-article h1 { color: #000; }
}
