/* Versão física criada para invalidar o cache de borda após o refinamento editorial. */
@font-face {
  font-family: "Tan Pearl";
  src: local("TAN - PEARL"), local("TAN PEARL"), local("Tan Pearl");
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("/assets/fonts/dm-serif-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-latin-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #0d0f12;
  --graphite: #1a1c20;
  --charcoal: #282a30;
  --brown: #3a332f;
  --taupe-dark: #504640;
  --taupe: #7a6a63;
  --beige: #b7a89f;
  --rose: #cdb8b0;
  --ivory: #e3d8d1;
  --plum: #6b415e;
  --plum-deep: #4f2e45;
  --white: #f8f2ed;
  --text: #e8dfd9;
  --text-muted: #b9aaa3;
  --light-text: #211e1f;
  --light-muted: #625852;
  --line: rgba(205, 184, 176, 0.25);
  --line-light: rgba(58, 51, 47, 0.2);
  --font-display: "Tan Pearl", "DM Serif Display", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-height: 5.25rem;
  --radius: 0.25rem;
  --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

img { height: auto; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.25em; }

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

button { color: inherit; font: inherit; }

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

::selection { background: var(--plum); color: var(--white); }

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

h1 { font-size: clamp(2.9rem, 5.4vw, 5.75rem); }
h2 { font-size: clamp(2.25rem, 3.5vw, 3.6rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.25rem); line-height: 1.08; }

.container { width: min(100% - (2 * var(--gutter)), var(--container)); margin-inline: auto; }

.section { position: relative; padding-block: clamp(6rem, 11vw, 10rem); }

.section-light { background: var(--ivory); color: var(--light-text); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  color: var(--plum-deep);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before { width: 2.25rem; height: 1px; background: currentColor; content: ""; }
.eyebrow-light { color: var(--rose); }

.lead { font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.65; }

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--plum);
  border-radius: var(--radius);
  padding: 0.9rem 1.45rem;
  background: var(--plum);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.085em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.button:hover { border-color: var(--rose); background: var(--rose); color: var(--ink); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-small { min-height: 2.75rem; padding: 0.65rem 1.15rem; font-size: 0.65rem; }
.button-light { border-color: var(--ivory); background: var(--ivory); color: var(--ink); }
.button-light:hover { border-color: var(--rose); background: var(--rose); color: var(--ink); }

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--plum-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span { transition: transform var(--transition); }
.text-link:hover span { transform: translate(0.2rem, -0.12rem); }
.text-link-light { color: var(--ivory); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(13, 15, 18, 0.8), transparent);
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled,
.site-header-solid {
  border-color: var(--line);
  background: rgba(13, 15, 18, 0.98);
}

.header-inner {
  display: flex;
  width: min(100% - (2 * var(--gutter)), 1320px);
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand { display: inline-flex; min-height: 2.75rem; align-items: center; gap: 0.8rem; color: var(--ivory); text-decoration: none; }
.brand-mark { width: 2.45rem; color: var(--rose); }
.brand-copy { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.045em; line-height: 1; }
.brand-role { margin-top: 0.35rem; font-size: 0.51rem; font-weight: 500; letter-spacing: 0.25em; line-height: 1; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.25rem); }
.site-nav > a:not(.button) { position: relative; padding-block: 0.5rem; color: var(--text); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; }
.site-nav > a:not(.button)::after { position: absolute; right: 100%; bottom: 0; left: 0; height: 1px; background: var(--rose); content: ""; transition: right var(--transition); }
.site-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; }
.back-link { display: inline-flex; min-width: 2.75rem; min-height: 2.75rem; align-items: center; justify-content: center; gap: 0.55rem; color: var(--text); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; }

.hero {
  position: relative;
  display: grid;
  min-height: max(44rem, 100svh);
  overflow: hidden;
  align-items: center;
  background: var(--ink);
}

.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,15,18,0.98) 0%, rgba(13,15,18,0.88) 33%, rgba(13,15,18,0.24) 63%, rgba(13,15,18,0.1) 100%), linear-gradient(0deg, rgba(13,15,18,0.64) 0%, transparent 42%); }
.hero-inner { position: relative; z-index: 2; padding-top: calc(var(--header-height) + 3rem); padding-bottom: 5rem; }
.hero-copy { width: min(58rem, 63%); }
.hero h1 { max-width: 12ch; margin-bottom: 1.7rem; color: var(--ivory); text-wrap: balance; }
.hero h1 em { color: var(--rose); font-style: normal; }
.hero-lead { max-width: 38rem; margin-bottom: 2rem; color: var(--text); font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 1.75rem; }
.hero-note { margin: 1.15rem 0 0; color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.04em; }

.hero-lines { position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.hero-lines span { position: absolute; border: 1px solid rgba(205,184,176,0.12); border-radius: 50% 50% 0 0; border-bottom: 0; }
.hero-lines span:nth-child(1) { right: 8%; bottom: -25%; width: 38vw; height: 72%; }
.hero-lines span:nth-child(2) { right: 12%; bottom: -20%; width: 30vw; height: 62%; }
.hero-lines span:nth-child(3) { right: 16%; bottom: -15%; width: 22vw; height: 52%; }

.scroll-cue { position: absolute; z-index: 3; right: var(--gutter); bottom: 2rem; display: inline-flex; align-items: center; gap: 0.75rem; color: var(--text-muted); font-size: 0.58rem; letter-spacing: 0.2em; text-decoration: none; text-transform: uppercase; transform: rotate(90deg) translateX(-100%); transform-origin: bottom right; }
.scroll-cue span { width: 3rem; height: 1px; overflow: hidden; background: var(--line); }
.scroll-cue span::after { display: block; width: 55%; height: 100%; background: var(--rose); content: ""; animation: scroll-line 2s ease-in-out infinite; }

@keyframes scroll-line { 0%, 100% { transform: translateX(-100%); } 50% { transform: translateX(200%); } }

.principles { border-block: 1px solid var(--line); background: var(--ink); }
.principles-inner { display: flex; min-height: 5rem; align-items: center; justify-content: space-between; gap: 1rem; color: var(--beige); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; }
.principles i { width: 0.22rem; height: 0.22rem; border-radius: 50%; background: var(--plum); }

.editorial-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.editorial-grid h2 { max-width: 16ch; margin-bottom: 0; }
.intro-copy { max-width: 34rem; padding-top: clamp(1rem, 6vw, 5rem); color: var(--light-muted); }
.intro-copy .lead { color: var(--light-text); }
.intro-copy p { margin-bottom: 1.5rem; }
.clarity-panel { display: grid; margin-top: clamp(4rem, 7vw, 6rem); border-block: 1px solid var(--line-light); grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr); }
.clarity-statement { padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 5rem) clamp(2.5rem, 5vw, 4.5rem) 0; border-right: 1px solid var(--line-light); }
.clarity-statement .eyebrow { margin-bottom: 2rem; }
.clarity-statement > p:last-child { max-width: 13ch; margin-bottom: 0; color: var(--plum-deep); font-family: var(--font-display); font-size: clamp(1.9rem, 2.8vw, 2.8rem); line-height: 1.08; }
.clarity-principles { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(3, 1fr); list-style: none; }
.clarity-principles li { padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.25rem, 2.5vw, 2.25rem); border-right: 1px solid var(--line-light); }
.clarity-principles li:last-child { border-right: 0; }
.clarity-principles strong { display: block; margin-bottom: 1rem; color: var(--light-text); font-family: var(--font-display); font-size: clamp(1.3rem, 1.8vw, 1.7rem); font-weight: 400; line-height: 1.12; }
.clarity-principles span { color: var(--light-muted); font-size: 0.86rem; line-height: 1.65; }

.method { overflow: hidden; background: var(--graphite); }
.method-arch { position: absolute; top: 5%; right: -16%; width: min(50rem, 54vw); aspect-ratio: 1 / 1.2; border: 1px solid var(--line); border-radius: 50% 50% 0 0; opacity: 0.34; }
.method-arch::before,
.method-arch::after { position: absolute; border: 1px solid var(--line); border-radius: inherit; content: ""; }
.method-arch::before { inset: 9%; }
.method-arch::after { inset: 18%; }
.section-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 4rem; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { max-width: 15ch; margin-bottom: 0; }
.section-heading > p:last-child { max-width: 30rem; margin-bottom: 0.4rem; color: var(--text-muted); }
.method-grid { position: relative; z-index: 1; display: grid; margin-top: 5rem; border-top: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.method-card { padding: 3rem clamp(1.5rem, 3vw, 3rem) 2rem 0; border-right: 1px solid var(--line); }
.method-card + .method-card { padding-left: clamp(1.5rem, 3vw, 3rem); }
.method-card:last-child { border-right: 0; }
.method-symbol { position: relative; display: grid; width: 6rem; aspect-ratio: 1; place-items: center; margin-bottom: 4.5rem; border: 1px solid var(--taupe); border-radius: 50%; }
.method-symbol::before { position: absolute; inset: 0.55rem; border: 1px solid rgba(183,168,159,0.35); border-radius: 50%; content: ""; }
.method-symbol span { color: var(--rose); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; }
.card-kicker { margin-bottom: 1rem; color: var(--taupe); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.method-card h3 { max-width: none; margin-bottom: 1.5rem; color: var(--ivory); }
.method-card > p:last-child { color: var(--text-muted); font-size: 0.92rem; }

.mentorship { overflow: hidden; background: #111317; }
.mentorship-grid { display: grid; grid-template-columns: minmax(19rem, 0.84fr) minmax(0, 1.16fr); gap: clamp(3rem, 8vw, 8.5rem); align-items: start; }
.portrait-frame { position: relative; margin: 0; }
.portrait-frame::before { position: absolute; z-index: 1; inset: 1rem -1rem -1rem 1rem; border: 1px solid var(--line); content: ""; pointer-events: none; }
.portrait-frame img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.04); }
.portrait-frame-tall { height: min(48rem, 76vw); max-height: 48rem; }
.portrait-frame-tall img { object-position: center 22%; }
.portrait-frame figcaption { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; padding: 1.3rem; background: linear-gradient(transparent, rgba(13,15,18,0.92)); color: var(--rose); font-size: 0.56rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.mentorship-copy h2 { max-width: 18ch; margin-bottom: 2rem; color: var(--ivory); font-size: clamp(2.4rem, 3vw, 3.25rem); line-height: 1.01; }
.mentorship-copy > .lead { max-width: 43rem; color: var(--text); }
.deliverables { margin: 2.5rem 0 2.75rem; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.deliverables li { display: grid; padding: 1.25rem 0; border-bottom: 1px solid var(--line); grid-template-columns: 3rem 1fr; gap: 1rem; }
.deliverables li > span { color: var(--rose); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; }
.deliverables strong { display: block; margin-bottom: 0.25rem; color: var(--ivory); font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; }
.deliverables small { display: block; color: var(--text-muted); font-size: 0.82rem; }
.form-note { max-width: 35rem; margin: 1rem 0 0; color: var(--taupe); font-size: 0.7rem; line-height: 1.6; }

.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.76fr); gap: clamp(3rem, 9vw, 9rem); align-items: center; }
.about-copy h2 { max-width: 16ch; }
.about-copy > p { max-width: 39rem; color: var(--light-muted); }
.about-copy .lead { color: var(--light-text); }
.about-copy blockquote { max-width: 33rem; margin: 3rem 0 2rem; padding: 1.75rem 0 1.75rem 2rem; border-left: 1px solid var(--plum); color: var(--plum-deep); font-family: var(--font-display); font-size: clamp(1.65rem, 2.7vw, 2.5rem); line-height: 1.15; }
.portrait-frame-about { height: min(43rem, 70vw); }
.portrait-frame-about img { object-position: center top; }
.portrait-seal { position: absolute; z-index: 4; right: -2rem; bottom: 2rem; display: grid; width: 8rem; aspect-ratio: 1; place-items: center; border: 1px solid var(--beige); border-radius: 50%; background: var(--ink); color: var(--rose); }
.portrait-seal::before { position: absolute; inset: 0.45rem; border: 1px solid rgba(205,184,176,0.35); border-radius: 50%; content: ""; }
.portrait-seal span { margin-top: 1rem; font-family: var(--font-display); font-size: 2.15rem; line-height: 1; }
.portrait-seal small { margin-top: -1.5rem; font-size: 0.42rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

.journey { overflow: hidden; background: var(--ink); }
.journey .section-heading { grid-template-columns: 1fr; }
.journey-list { margin: 5rem 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.journey-list li { display: grid; min-height: 11rem; align-items: center; padding-block: 2rem; border-bottom: 1px solid var(--line); grid-template-columns: 0.35fr 1fr; transition: background var(--transition), padding var(--transition); }
.journey-list li:hover { padding-inline: 1.5rem; background: rgba(205,184,176,0.04); }
.journey-list li > span { color: var(--rose); font-family: var(--font-display); font-size: clamp(2.3rem, 4vw, 4rem); }
.journey-list h3 { margin-bottom: 0.55rem; color: var(--ivory); }
.journey-list p { max-width: 43rem; margin-bottom: 0; color: var(--text-muted); }

.faq-grid { display: grid; grid-template-columns: 0.65fr 1fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.faq-grid header { position: sticky; top: calc(var(--header-height) + 2rem); }
.faq-grid header h2 { max-width: 9ch; }
.faq-grid header > p:last-child { max-width: 27rem; color: var(--light-muted); }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { position: relative; display: flex; min-height: 6rem; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; color: var(--light-text); cursor: pointer; font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.2; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 1.25rem; width: 1.25rem; height: 1.25rem; }
.faq-list summary span::before,
.faq-list summary span::after { position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--plum); content: ""; transition: transform var(--transition); }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 46rem; padding: 0 3rem 1.75rem 0; color: var(--light-muted); }

.closing { position: relative; min-height: 43rem; overflow: hidden; padding-block: clamp(7rem, 12vw, 11rem); background: var(--plum-deep); }
.closing-inner { position: relative; z-index: 2; text-align: center; }
.closing-mark { width: 4rem; margin: 0 auto 2.25rem; color: var(--rose); }
.closing .eyebrow { justify-content: center; }
.closing h2 { max-width: 16ch; margin-inline: auto; color: var(--ivory); }
.closing-inner > p:not(.eyebrow) { max-width: 40rem; margin: 1.75rem auto 2.25rem; color: var(--text); }
.closing-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.25rem 2rem; }
.closing-orbit { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0.32; }
.closing-orbit span { position: absolute; aspect-ratio: 1; border: 1px solid var(--rose); border-radius: 50%; }
.closing-orbit span:nth-child(1) { width: 32rem; }
.closing-orbit span:nth-child(2) { width: 48rem; }
.closing-orbit span:nth-child(3) { width: 65rem; }

.site-footer { padding: 4.5rem 0 1.5rem; background: #090a0c; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid var(--line); }
.brand-footer .brand-mark { width: 3.25rem; }
.brand-footer .brand-name { font-size: 1.6rem; }
.footer-top nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem 2rem; }
.footer-top nav a { color: var(--text-muted); font-size: 0.65rem; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; }
.footer-top nav a:hover { color: var(--ivory); }
.footer-bottom { display: grid; padding-top: 1.5rem; color: var(--text-muted); font-size: 0.62rem; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { text-align: center; }
.footer-bottom p:last-child { text-align: right; }
.footer-bottom a { color: var(--beige); }

/* Links */
.links-page,
.error-page { min-height: 100vh; background: var(--ink); }
.links-main { position: relative; display: grid; min-height: calc(100svh - var(--header-height)); overflow: hidden; padding: calc(var(--header-height) + 4rem) var(--gutter) 5rem; place-items: center; }
.links-layout { position: relative; z-index: 2; display: grid; width: min(100%, 68rem); grid-template-columns: minmax(18rem, 0.75fr) minmax(22rem, 1.25fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.links-profile { text-align: center; }
.links-avatar-wrap { position: relative; width: 11.5rem; aspect-ratio: 1; margin: 0 auto 2rem; }
.links-avatar { width: 100%; height: 100%; border: 1px solid var(--line); border-radius: 50%; object-fit: cover; object-position: center 18%; filter: saturate(0.85); }
.links-avatar-wrap > svg { position: absolute; right: -0.4rem; bottom: -0.4rem; width: 3.3rem; padding: 0.35rem; border: 1px solid var(--line); border-radius: 50%; background: var(--ink); color: var(--rose); }
.links-profile .eyebrow { justify-content: center; margin-bottom: 1rem; }
.links-profile h1 { margin-bottom: 0.65rem; color: var(--ivory); font-size: clamp(3.1rem, 6vw, 5.2rem); }
.links-role { color: var(--rose); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.links-intro { max-width: 27rem; margin: 1.5rem auto 0; color: var(--text-muted); }
.links-actions { display: grid; gap: 0.9rem; }
.link-card { display: grid; min-height: 7.25rem; align-items: center; padding: 1.25rem 1.35rem; border: 1px solid var(--line); background: rgba(40,42,48,0.5); color: var(--text); grid-template-columns: 2.5rem 1fr 2rem; gap: 1rem; text-decoration: none; transition: border var(--transition), background var(--transition), transform var(--transition); }
.link-card:hover { border-color: var(--rose); background: rgba(80,70,64,0.45); transform: translateX(0.35rem); }
.link-card-featured { border-color: var(--plum); background: var(--plum-deep); }
.link-index { color: var(--rose); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; }
.link-copy strong { display: block; color: var(--ivory); font-family: var(--font-display); font-size: clamp(1.35rem, 2.2vw, 1.8rem); font-weight: 400; line-height: 1.15; }
.link-copy small { display: block; margin-top: 0.4rem; color: var(--text-muted); font-size: 0.72rem; line-height: 1.5; }
.link-arrow { color: var(--rose); font-size: 1.1rem; text-align: right; }
.links-note { margin: 0.75rem 0 0; color: var(--text-muted); font-size: 0.65rem; text-align: center; }
.links-orbits { position: absolute; inset: 0; opacity: 0.22; pointer-events: none; }
.links-orbits span { position: absolute; border: 1px solid var(--rose); border-radius: 50%; }
.links-orbits span:nth-child(1) { top: -22rem; left: -20rem; width: 50rem; aspect-ratio: 1; }
.links-orbits span:nth-child(2) { right: -28rem; bottom: -30rem; width: 65rem; aspect-ratio: 1; }
.links-orbits span:nth-child(3) { right: -15rem; bottom: -17rem; width: 38rem; aspect-ratio: 1; }
.links-footer { display: flex; min-height: 4rem; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem var(--gutter); border-top: 1px solid var(--line); background: #090a0c; color: var(--text-muted); font-size: 0.6rem; }
.links-footer p { margin: 0; }
.links-footer a { display: inline-flex; min-height: 2.75rem; align-items: center; color: var(--beige); }

/* 404 */
.error-main { position: relative; display: grid; min-height: calc(100svh - 4rem); overflow: hidden; padding: calc(var(--header-height) + 3rem) var(--gutter) 5rem; place-items: center; }
.error-content { position: relative; z-index: 2; max-width: 49rem; text-align: center; }
.error-mark { width: 5rem; margin: 0 auto 2.5rem; color: var(--rose); }
.error-code { color: var(--rose); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.error-content h1 { margin-bottom: 1.5rem; color: var(--ivory); font-size: clamp(3.2rem, 7vw, 6.5rem); }
.error-content > p:not(.error-code) { max-width: 38rem; margin: 0 auto 2rem; color: var(--text-muted); font-size: 1.05rem; }
.error-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem 2rem; }
.error-orbit { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0.22; }
.error-orbit span { position: absolute; aspect-ratio: 1; border: 1px solid var(--rose); border-radius: 50%; }
.error-orbit span:nth-child(1) { width: 27rem; }
.error-orbit span:nth-child(2) { width: 43rem; }
.error-orbit span:nth-child(3) { width: 62rem; }

.js [data-reveal] { opacity: 0; transform: translateY(1.8rem); transition: opacity 750ms cubic-bezier(0.22,1,0.36,1), transform 750ms cubic-bezier(0.22,1,0.36,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  :root { --header-height: 4.75rem; }
  .js .menu-toggle { position: relative; z-index: 102; display: grid; width: 2.75rem; height: 2.75rem; padding: 0; border: 1px solid var(--line); background: rgba(13,15,18,0.4); place-items: center; cursor: pointer; }
  .menu-toggle span { position: absolute; width: 1.15rem; height: 1px; background: var(--ivory); transition: transform var(--transition), top var(--transition); }
  .menu-toggle span:first-child { top: 1.05rem; }
  .menu-toggle span:last-child { top: 1.6rem; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 1.35rem; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 1.35rem; transform: rotate(-45deg); }
  .site-nav { flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; padding: 1.2rem var(--gutter) 1.6rem; }
  .js .site-nav { position: fixed; z-index: 101; inset: 0; display: flex; visibility: hidden; flex-direction: column; flex-wrap: nowrap; padding: 7rem var(--gutter) 3rem; background: rgba(13,15,18,0.985); opacity: 0; transform: translateY(-1rem); transition: opacity var(--transition), transform var(--transition); }
  .js .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .js .site-nav > a:not(.button) { font-family: var(--font-display); font-size: 2.4rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .js .site-nav .button { margin-top: 1rem; }
  .hero-copy { width: 72%; }
  .scroll-cue { display: none; }
  .clarity-panel { grid-template-columns: 1fr; }
  .clarity-statement { padding-right: 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { padding: 2.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-card + .method-card { padding-left: 0; }
  .method-card:last-child { border-bottom: 0; }
  .method-symbol { margin-bottom: 2.5rem; }
  .mentorship-grid,
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .portrait-frame-tall,
  .portrait-frame-about { width: min(calc(100% - 1rem), 31rem); height: min(44rem, 88vw); }
  .mentorship-copy h2,
  .about-copy h2 { max-width: 18ch; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid header { position: static; }
  .faq-grid header h2 { max-width: none; }
  .links-layout { grid-template-columns: 1fr; gap: 3rem; }
  .links-profile { max-width: 34rem; margin-inline: auto; }
}

@media (max-width: 720px) {
  :root { --gutter: 1.25rem; }
  h1 { font-size: clamp(2.65rem, 12vw, 3.4rem); }
  h2 { font-size: clamp(2.15rem, 8.5vw, 2.75rem); line-height: 1.02; }
  .brand-mark { width: 2.15rem; }
  .brand-name { font-size: 1.15rem; }
  .brand-role { font-size: 0.43rem; }
  .hero { min-height: 47rem; align-items: end; }
  .hero-photo { object-position: 67% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(13,15,18,0.99) 0%, rgba(13,15,18,0.93) 45%, rgba(13,15,18,0.43) 100%); }
  .hero-inner { padding-top: 8.5rem; padding-bottom: 5.25rem; }
  .hero-copy { width: 100%; }
  .hero h1 { max-width: 12.5ch; margin-bottom: 1rem; }
  .hero-lead { max-width: 31rem; margin-bottom: 1.4rem; font-size: 0.95rem; line-height: 1.55; }
  .hero-actions { align-items: stretch; gap: 0.7rem; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-note { margin-top: 0.7rem; text-align: center; }
  .hero-lines,
  .scroll-cue { display: none; }
  .principles-inner { min-height: 4rem; overflow: hidden; justify-content: flex-start; white-space: nowrap; }
  .principles-inner span:nth-of-type(4),
  .principles-inner i:nth-of-type(3) { display: none; }
  .editorial-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .editorial-grid h2 { max-width: none; }
  .intro-copy { padding-top: 0; }
  .clarity-principles { grid-template-columns: 1fr; }
  .clarity-principles li { padding: 2rem 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .clarity-principles li:last-child { border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .eyebrow { grid-column: auto; }
  .section-heading h2 { max-width: none; }
  .method-arch { width: 85vw; }
  .mentorship-grid,
  .about-grid { grid-template-columns: 1fr; }
  .portrait-frame-tall { width: calc(100% - 1rem); height: 38rem; }
  .mentorship-copy { padding-top: 1rem; }
  .mentorship-copy h2,
  .about-copy h2 { max-width: none; }
  .about-copy { order: 2; }
  .portrait-frame-about { order: 1; width: calc(100% - 1rem); height: 34rem; }
  .portrait-seal { right: -0.75rem; width: 6.5rem; }
  .journey-list li { grid-template-columns: 4.25rem 1fr; gap: 0.5rem; }
  .journey-list li:hover { padding-inline: 0; background: transparent; }
  .journey-list li > span { font-size: 2.25rem; }
  .faq-list summary { min-height: 5rem; font-size: 1.3rem; }
  .closing-orbit span:nth-child(3) { display: none; }
  .footer-top { flex-direction: column; }
  .footer-top nav { justify-content: flex-start; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom p:nth-child(2),
  .footer-bottom p:last-child { text-align: left; }
  .links-main { padding-top: calc(var(--header-height) + 3rem); }
  .links-layout { grid-template-columns: 1fr; }
  .links-avatar-wrap { width: 9.5rem; }
  .links-profile h1,
  .error-content h1 { font-size: clamp(2.6rem, 12vw, 3.25rem); }
  .link-card { min-height: 6.5rem; grid-template-columns: 2rem 1fr 1.5rem; gap: 0.75rem; }
  .link-copy strong { font-size: 1.3rem; }
  .links-footer { flex-direction: column; align-items: flex-start; }
  .back-link { font-size: 0.6rem; }
}

@media (max-width: 380px) {
  .brand-role { display: none; }
  .hero { min-height: 45rem; }
  .hero-inner { padding-top: 7.5rem; }
  .hero h1 { font-size: 2.65rem; }
  .hero-lead { font-size: 0.88rem; }
  .button { padding-inline: 1rem; font-size: 0.64rem; }
  .principles-inner span { font-size: 0.54rem; }
  .link-card { padding-inline: 1rem; }
}

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

@media (forced-colors: active) {
  .hero-shade { background: Canvas; opacity: 0.8; }
  .button { border: 2px solid ButtonText; }
  .portrait-frame::before,
  .hero-lines,
  .method-arch,
  .links-orbits,
  .closing-orbit,
  .error-orbit { display: none; }
}

@media print {
  :root { color-scheme: light; }
  body { background: #fff; color: #111; font-size: 10pt; }
  .site-header,
  .hero-photo,
  .hero-shade,
  .hero-lines,
  .scroll-cue,
  .principles,
  .button,
  .text-link,
  .closing,
  .site-footer,
  .portrait-seal,
  .links-footer { display: none !important; }
  .hero { display: block; min-height: 0; padding: 2cm 0 1cm; background: #fff; }
  .hero-inner { padding: 0; }
  .hero-copy { width: 100%; }
  .hero h1,
  .hero h1 em,
  .method-card h3,
  .mentorship-copy h2,
  .journey-list h3 { color: #111; }
  .hero-lead,
  .hero-note,
  .section-heading > p:last-child,
  .method-card > p:last-child,
  .form-note,
  .journey-list p { color: #333; }
  .section,
  .method,
  .mentorship,
  .journey { padding-block: 1.2cm; background: #fff; color: #111; }
  .portrait-frame { max-height: 12cm; break-inside: avoid; }
  .portrait-frame::before { display: none; }
  .method-grid,
  .clarity-panel { display: block; }
  .method-card,
  .clarity-principles { grid-template-columns: repeat(3, 1fr); }
  .clarity-principles li { break-inside: avoid; }
  .faq-list details { break-inside: avoid; }
  .faq-list details > * { display: block; }
  .links-main { display: block; min-height: 0; padding: 1cm; }
  .links-layout { grid-template-columns: 1fr; }
  .link-card { color: #111; break-inside: avoid; }
}
